Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.EPPlus/4.0.3/EPPlus-4.0.3/FormulaParsing/Excel/Functions/DateTime/Hour.cs @ 12074

Last change on this file since 12074 was 12074, checked in by sraggl, 9 years ago

#2341: Added EPPlus-4.0.3 to ExtLibs

File size: 1.9 KB
Line 
1
2/* Copyright (C) 2011  Jan Källman
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
12 * See the GNU Lesser General Public License for more details.
13 *
14 * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
15 * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
16 *
17 * All code and executables are provided "as is" with no warranty either express or implied.
18 * The author accepts no liability for any damage or loss of business that this product may cause.
19 *
20 * Code change notes:
21 *
22 * Author             Change            Date
23 *******************************************************************************
24 * Mats Alm                       Added                   2013-12-03
25 *******************************************************************************/
26using System;
27using System.Collections.Generic;
28using System.Linq;
29using System.Text;
30using OfficeOpenXml.FormulaParsing.ExpressionGraph;
31using System.Globalization;
32
33namespace OfficeOpenXml.FormulaParsing.Excel.Functions.DateTime
34{
35    public class Hour : DateParsingFunction
36    {
37        public override CompileResult Execute(IEnumerable<FunctionArgument> arguments, ParsingContext context)
38        {
39            ValidateArguments(arguments, 1);
40            var dateObj = arguments.ElementAt(0).Value;
41            var date = ParseDate(arguments, dateObj);
42            return CreateResult(date.Hour, DataType.Integer);
43        }
44
45    }
46}
Note: See TracBrowser for help on using the repository browser.