Class TupleCollection
Represents the collection of the tuples.
Implements
Inherited Members
Namespace: Syncfusion.Olap.Data
Assembly: Syncfusion.Olap.Base.dll
Syntax
public class TupleCollection : Collection<Tuple>, IList<Tuple>, ICollection<Tuple>, IList, ICollection, IReadOnlyList<Tuple>, IReadOnlyCollection<Tuple>, IEnumerable<Tuple>, IEnumerable
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 parent_Axis)
Parameters
Type | Name | Description |
---|---|---|
Axis | parent_Axis | The parent axis. |
Fields
MaxLevel
Gets or sets the maximum level of the current member in the tuple set.
Declaration
public List<int> MaxLevel
Field Value
Type |
---|
System.Collections.Generic.List<System.Int32> |
MinLevel
Gets or sets the minimum level of the current member in the tuple set.
Declaration
public List<int> MinLevel
Field Value
Type |
---|
System.Collections.Generic.List<System.Int32> |
valueSet
Gets or sets a value indicating whether the minimum level has been already set or not.
Returns true if it is already set or else returns false.
Declaration
public List<bool> valueSet
Field Value
Type |
---|
System.Collections.Generic.List<System.Boolean> |
Methods
InsertItem(Int32, Tuple)
Inserts an element into the System.Collections.ObjectModel.Collection<T> at the specified index.
Declaration
protected override void InsertItem(int index, Tuple item)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index at which |
Tuple | item | The object to insert. The value can be null for reference types. |
Overrides
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException |
|
SetItem(Int32, Tuple)
Replaces the element at the specified index.
Declaration
protected override void SetItem(int index, Tuple item)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The zero-based index of the element to replace. |
Tuple | item | The new value for the element at the specified index. The value can be null for reference types. |
Overrides
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException |
|