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