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/Information/ErrorType.cs @ 12707

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

#2341: Added EPPlus-4.0.3 to ExtLibs

File size: 3.0 KB
Line 
1/* Copyright (C) 2011  Jan Källman
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
11 * See the GNU Lesser General Public License for more details.
12 *
13 * The GNU Lesser General Public License can be viewed at http://www.opensource.org/licenses/lgpl-license.php
14 * If you unfamiliar with this license or have questions about it, here is an http://www.gnu.org/licenses/gpl-faq.html
15 *
16 * All code and executables are provided "as is" with no warranty either express or implied.
17 * The author accepts no liability for any damage or loss of business that this product may cause.
18 *
19 * Code change notes:
20 *
21 * Author             Change            Date
22 *******************************************************************************
23 * Mats Alm                       Added                   2015-01-15
24 *******************************************************************************/
25using OfficeOpenXml.FormulaParsing.ExpressionGraph;
26using System;
27using System.Collections.Generic;
28using System.Linq;
29using System.Text;
30
31namespace OfficeOpenXml.FormulaParsing.Excel.Functions.Information
32{
33    public class ErrorType : ExcelFunction
34    {
35        public override CompileResult Execute(IEnumerable<FunctionArgument> arguments, ParsingContext context)
36        {
37            ValidateArguments(arguments, 1);
38            var error = arguments.ElementAt(0);
39            var isErrorFunc = context.Configuration.FunctionRepository.GetFunction("iserror");
40            var isErrorResult = isErrorFunc.Execute(arguments, context);
41            if (!(bool) isErrorResult.Result)
42            {
43                return CreateResult(ExcelErrorValue.Create(eErrorType.NA), DataType.ExcelError);
44            }
45            var errorType = error.ValueAsExcelErrorValue;
46            int retValue;
47            switch (errorType.Type)
48            {
49                case eErrorType.Null:
50                    return CreateResult(1, DataType.Integer);
51                case eErrorType.Div0:
52                    return CreateResult(2, DataType.Integer);
53                case eErrorType.Value:
54                    return CreateResult(3, DataType.Integer);
55                case eErrorType.Ref:
56                    return CreateResult(4, DataType.Integer);
57                case eErrorType.Name:
58                    return CreateResult(5, DataType.Integer);
59                case eErrorType.Num:
60                    return CreateResult(6, DataType.Integer);
61                case eErrorType.NA:
62                    return CreateResult(7, DataType.Integer);
63            }
64            return CreateResult(ExcelErrorValue.Create(eErrorType.NA), DataType.ExcelError);
65        }
66    }
67}
Note: See TracBrowser for help on using the repository browser.