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