ListColumnCollection
Contents
[
Hide
]ListColumnCollection class
Represents A collection of all the ListColumn objects in the specified ListObject object.
class ListColumnCollection;
Methods
| Method | Description | 
|---|---|
| get(number) | Gets the ListColumn by the index. | 
| get(string) | Gets the ListColumn by the name. | 
| getCount() | @deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in. | 
| isNull() | Checks whether the implementation object is null. | 
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.
getCount()
@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;