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 2013-12-03
|
---|
24 | *******************************************************************************/
|
---|
25 | using System;
|
---|
26 | using System.Collections.Generic;
|
---|
27 | using System.Linq;
|
---|
28 | using System.Text;
|
---|
29 | using OfficeOpenXml.FormulaParsing.ExpressionGraph;
|
---|
30 | using OfficeOpenXml.FormulaParsing.ExcelUtilities;
|
---|
31 | using OfficeOpenXml.FormulaParsing.Exceptions;
|
---|
32 |
|
---|
33 | namespace OfficeOpenXml.FormulaParsing.Excel.Functions.RefAndLookup
|
---|
34 | {
|
---|
35 | public class Address : ExcelFunction
|
---|
36 | {
|
---|
37 | public override CompileResult Execute(IEnumerable<FunctionArgument> arguments, ParsingContext context)
|
---|
38 | {
|
---|
39 | ValidateArguments(arguments, 2);
|
---|
40 | var row = ArgToInt(arguments, 0);
|
---|
41 | var col = ArgToInt(arguments, 1);
|
---|
42 | ThrowExcelErrorValueExceptionIf(() => row < 0 && col < 0, eErrorType.Value);
|
---|
43 | var referenceType = ExcelReferenceType.AbsoluteRowAndColumn;
|
---|
44 | var worksheetSpec = string.Empty;
|
---|
45 | if (arguments.Count() > 2)
|
---|
46 | {
|
---|
47 | var arg3 = ArgToInt(arguments, 2);
|
---|
48 | ThrowExcelErrorValueExceptionIf(() => arg3 < 1 || arg3 > 4, eErrorType.Value);
|
---|
49 | referenceType = (ExcelReferenceType)ArgToInt(arguments, 2);
|
---|
50 | }
|
---|
51 | if (arguments.Count() > 3)
|
---|
52 | {
|
---|
53 | var fourthArg = arguments.ElementAt(3).Value;
|
---|
54 | if(fourthArg.GetType().Equals(typeof(bool)) && !(bool)fourthArg)
|
---|
55 | {
|
---|
56 | throw new InvalidOperationException("Excelformulaparser does not support the R1C1 format!");
|
---|
57 | }
|
---|
58 | if (fourthArg.GetType().Equals(typeof(string)))
|
---|
59 | {
|
---|
60 | worksheetSpec = fourthArg.ToString() + "!";
|
---|
61 | }
|
---|
62 | }
|
---|
63 | var translator = new IndexToAddressTranslator(context.ExcelDataProvider, referenceType);
|
---|
64 | return CreateResult(worksheetSpec + translator.ToAddress(col, row), DataType.ExcelAddress);
|
---|
65 | }
|
---|
66 | }
|
---|
67 | }
|
---|