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