Class FunctionEvaluationContext<T>
Class representing function evaluation context.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions.Functions
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class FunctionEvaluationContext<T>
Type Parameters
T
Type of the arguments. |
Constructors
FunctionEvaluationContext(T[], Worksheet, Int32, Int32)
Initializes a new instance of the FunctionEvaluationContext<T> class.
Declaration
public FunctionEvaluationContext(T[] arguments, Worksheet worksheet, int rowIndex, int columnIndex)
Parameters
T[]
arguments
The arguments. |
Worksheet
worksheet
The worksheet. |
System.Int32
rowIndex
Index of the row. |
System.Int32
columnIndex
Index of the column. |
Properties
Arguments
Gets the arguments.
Declaration
public T[] Arguments { get; }
Property Value
T[]
The arguments. |
ColumnIndex
Gets the index of the column.
Declaration
public int ColumnIndex { get; }
Property Value
System.Int32
The index of the column. |
RowIndex
Gets the index of the row.
Declaration
public int RowIndex { get; }
Property Value
System.Int32
The index of the row. |
Worksheet
Gets the worksheet.
Declaration
public Worksheet Worksheet { get; }
Property Value
Worksheet
The worksheet. |