ListColumnCollection

ListColumnCollection class

Represents a list of all the ListColumn objects in the table.

class ListColumnCollection;

Methods

MethodDescription
get(number)Gets the ListColumn by the index.
get(string)Gets the ListColumn by the name.
removeAt(number)Remove ListColumn by index.

get(number)

Gets the ListColumn by the index.

get(index: number) : ListColumn;

Parameters:

ParameterTypeDescription
indexnumberThe index.

Returns

the ListColumn object.

get(string)

Gets the ListColumn by the name.

get(name: string) : ListColumn;

Parameters:

ParameterTypeDescription
namestringThe name of the ListColumn

Returns

The ListColumn object.

removeAt(number)

Remove ListColumn by index.

removeAt(index: number) : void;

Parameters:

ParameterTypeDescription
indexnumberThe index.