ListColumnCollection
Contents
[
Hide
]ListColumnCollection class
Represents a list of all the ListColumn objects in the table.
class ListColumnCollection;
Methods
get(number)
Gets the ListColumn by the index.
get(index: number) : ListColumn;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | number | The index. |
Returns
the ListColumn object.
get(string)
Gets the ListColumn by the name.
get(name: string) : ListColumn;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| name | string | The name of the ListColumn |
Returns
The ListColumn object.
removeAt(number)
Remove ListColumn by index.
removeAt(index: number) : void;
Parameters:
