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