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