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