Class CompressedExpressionCollection
Sparse collection optimized for storing RadExpression objects in a two-dimensional grid, using EmptyExpression as the default for unset cells. Use this for formula storage in worksheets with minimal memory overhead.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Expressions.DataStructures
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class CompressedExpressionCollection : CompressedCollection<RadExpression>, IEnumerable<RadExpression>, IEnumerable
Constructors
CompressedExpressionCollection(Int32, Int32)
Initializes a new instance with the specified row and column dimensions, defaulting unset cells to EmptyExpression.
Declaration
public CompressedExpressionCollection(int rowCount, int columnCount)
Parameters
|
System.Int32
rowCount
The rows count. |
|
System.Int32
columnCount
The columns count. |