Property Getters/Setters Summary | ||
---|---|---|
method | getCount() | |
Gets the number of elements actually contained in the collection.
|
||
method | getSortAsc() | |
method | setSortAsc(value) | |
Whether to sort the SortColumn column in ascending (1) or descending (0) order. The value of the property is BOOL integer constant. | ||
method | getSortColumn() | |
method | setSortColumn(value) | |
The column on which to sort the data. | ||
method | get(index) | |
Gets the element at the specified index.
|
Method Summary | ||
---|---|---|
method | add(dataColumn) | |
Add the dataColumn in the collection.
|
||
method | clear() | |
Removes all elements from collection.
|
||
method | isExist(index) | |
Is exist item in the collection.
|
||
method | iterator() | |
Supports a simple iteration over a nongeneric collection.
|
||
method | remove(dataColumn) | |
Remove the dataColumn from the collection.
|
String getSortColumn() / setSortColumn(value)
int getSortAsc() / setSortAsc(value)
int getCount()
DataColumn get(index)
index
- int add(dataColumn)
dataColumn: DataColumn
- remove(dataColumn)
dataColumn: DataColumn
- Iterator iterator()
boolean isExist(index)
index: int
- index of element.clear()