Class CellSet
The cell set encapsulates a multi-dimensional result set that is the result of running a command. A multi-dimensional result set contains a discrete collection of data points or cells, that are organized along multiple dimensions or axes.
Inheritance
Inherited Members
Namespace: Syncfusion.Olap.Data
Assembly: Syncfusion.Olap.Base.dll
Syntax
public class CellSet
Remarks
A cell set is created when ExecuteCellSet method of AdomdDataProvider is called to run a command.
Constructors
CellSet()
Initializes a new instance of the CellSet class.
Declaration
public CellSet()
CellSet(IDataProvider)
Initializes a new instance of the CellSet class.
Declaration
public CellSet(IDataProvider data_Provider)
Parameters
Type | Name | Description |
---|---|---|
IDataProvider | data_Provider | The data provider. |
Properties
Axes
Gets an instance of the AxisCollection class that contains the axes of the cell set.
Declaration
public AxisCollection Axes { get; }
Property Value
Type | Description |
---|---|
AxisCollection | Contains the Collection of Axis |
ColumnMaxLevel
Gets or sets the maximum level of column.
Declaration
public int ColumnMaxLevel { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The maximum level of column. |
MemberCellCollection
Gets or sets the collection of member cells.
Declaration
public CellCollection MemberCellCollection { get; set; }
Property Value
Type | Description |
---|---|
CellCollection | The member cell collection. |
RowMaxLevel
Gets or sets the maximum level of row.
Declaration
public int RowMaxLevel { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The maximum level of row. |
Methods
GetCell(Int32[])
Gets the cell, based on the specified parent index.
Declaration
public Cell GetCell(params int[] indexes)
Parameters
Type | Name | Description |
---|---|---|
System.Int32[] | indexes | The list of indexes. |
Returns
Type | Description |
---|---|
Cell | The cell at specified index. |
HasValidCells()
Determines whether the cells are valid or not.
Declaration
public bool HasValidCells()
Returns
Type |
---|
System.Boolean |