Class TupleCollection
A collection of Tuple.
Inheritance
System.Object
TupleCollection
Namespace: Syncfusion.Olap.UWP.Data
Assembly: Syncfusion.Olap.UWP.dll
Syntax
public class TupleCollection : Collection<Tuple>
Constructors
TupleCollection()
Initializes a new instance of the TupleCollection class.
Declaration
public TupleCollection()
TupleCollection(Axis)
Initializes a new instance of the TupleCollection class.
Declaration
public TupleCollection(Axis parentAxis)
Parameters
Type | Name | Description |
---|---|---|
Axis | parentAxis | The parent axis. |
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 |
Property Value
Type |
---|
Tuple |
Methods
Insert(Int32, Tuple)
Inserts the specified index.
Declaration
public void Insert(int index, Tuple tuple)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index. |
Tuple | tuple | The tuple. |
Remove(Tuple)
Removes the specified tuple.
Declaration
public void Remove(Tuple tuple)
Parameters
Type | Name | Description |
---|---|---|
Tuple | tuple | The tuple. |