Class ArrayExpression
Provides methods and properties for creating an ArrayExpression.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class ArrayExpression : ConstantExpression<CompressedExpressionCollection>, IPrecalculatedExpressionThreeNode, IEnumerable<RadExpression>, IEnumerable
Constructors
ArrayExpression(CompressedExpressionCollection)
Initializes a new instance of the Array
Declaration
public ArrayExpression(CompressedExpressionCollection array)
Parameters
Compressed The array. |
Properties
ColumnCount
Gets the column count of the array.
Declaration
public int ColumnCount { get; }
Property Value
System. The column count. |
Item[Int32, Int32]
Gets the Rad
Declaration
public RadExpression this[int rowIndex, int columnIndex] { get; }
Parameters
System.
|
System.
|
Property Value
Rad The Rad |
RowCount
Gets the row count of the array.
Declaration
public int RowCount { get; }
Property Value
System. The row count. |
Methods
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<RadExpression> GetEnumerator()
Returns
System. A System.Collections.Generic.IEnumerator<T> that can be used to iterate through the collection. |
Implements
GetValueOverride()
Overridable method for getting expression value.
Declaration
protected override RadExpression GetValueOverride()
Returns
Rad The value as RadExpression. |
Overrides
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Returns an enumerator that iterates through a collection.
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System. An System. |