java.lang.ObjectCollection
com.aspose.diagram.ParaCollection
public class ParaCollection
| Property Getters/Setters Summary | ||
|---|---|---|
int | getCount() | → inherited from Collection
|
| Gets the number of elements actually contained in the collection. | ||
Para | get(int) | |
| Gets the element at the specified index. | ||
| Method Summary | ||
|---|---|---|
int | add(Para item) | |
| Add the Para object in the collection. | ||
void | clear() | → inherited from Collection
|
| Removes all elements from collection. | ||
Para | getPara(int IX) | |
| Gets the element at the specified index IX. Returns Null if the element is not exist. | ||
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(Para item) | |
| Remove the Para object from the collection. | ||
| Property Getters/Setters Detail |
|---|
getCount | → inherited from Collection
|
public int getCount() | |
get | |
public Para get(int index) | |
index - | Method Detail |
|---|
add | |
public int add(Para item) | |
item - remove | |
public void remove(Para item) | |
item - getPara | |
public Para getPara(int IX) | |
IX - 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() | |