Class AxisCollection
Represents the collection of Axis objects.
Inheritance
System.Object
AxisCollection
Namespace: Syncfusion.Olap.UWP.MDXQueryParser
Assembly: Syncfusion.Olap.UWP.dll
Syntax
public class AxisCollection : Collection<Axis>
Constructors
AxisCollection()
Declaration
public AxisCollection()
Properties
Item[Int32]
Gets or sets the Axis at the specified index.
Declaration
public Axis this[int index] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index of the axis object. |
Property Value
Type |
---|
Axis |
Methods
Add(Axis)
Adds the specified axis.
Declaration
public int Add(Axis axis)
Parameters
Type | Name | Description |
---|---|---|
Axis | axis | The axis which is to be added. |
Returns
Type | Description |
---|---|
System.Int32 | The index of the axis object in the current collection. |
Insert(Int32, Axis)
Removes the specified dimension.
Declaration
public void Insert(int index, Axis axis)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index at which axis object is to be inserted. |
Axis | axis | The axis object. |
Remove(Axis)
Removes the specified axis.
Declaration
public void Remove(Axis axis)
Parameters
Type | Name | Description |
---|---|---|
Axis | axis | The row or column axis which is to be removed. |