New to Telerik Document ProcessingStart a free 30-day trial

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.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.Expressions.DataStructures

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

C#
public class CompressedExpressionCollection : CompressedCollection<RadExpression>, IEnumerable<RadExpression>, IEnumerable

Inheritance: objectCompressedCollection<RadExpression>CompressedExpressionCollection

Implements: IEnumerableIEnumerable<RadExpression>

Inherited Members CompressedCollection<RadExpression>.GetLength(int)CompressedCollection<RadExpression>.GetEnumerator()CompressedCollection<RadExpression>.LengthCompressedCollection<RadExpression>.HasValuesCompressedCollection<RadExpression>.this[int, int]

Constructors

Initializes a new instance with the specified row and column dimensions, defaulting unset cells to EmptyExpression.

C#
public CompressedExpressionCollection(int rowCount, int columnCount)
Parameters:rowCountint

The rows count.

columnCountint

The columns count.