java.lang.ObjectCollection
com.aspose.diagram.PageCollection
public class PageCollection
| Property Getters/Setters Summary | ||
|---|---|---|
int | getCount() | → inherited from Collection
|
| Gets the number of elements actually contained in the collection. | ||
Page | get(int) | |
| Gets the element at the specified index. | ||
| Method Summary | ||
|---|---|---|
int | add(Page page) | |
| Add the page in the collection. | ||
void | clear() | → inherited from Collection
|
| Removes all elements from collection. | ||
void | dispose() | |
| Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. | ||
Page | getPage(int ID) | |
| Gets the element at the specified ID. | ||
Page | getPage(java.lang.String name) | |
| Gets the element at the specified name. | ||
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(Page page) | |
| Remove the page from the collection. | ||
| Property Getters/Setters Detail |
|---|
getCount | → inherited from Collection
|
public int getCount() | |
get | |
public Page get(int index) | |
index - | Method Detail |
|---|
add | |
public int add(Page page) | |
page - dispose | |
public void dispose() | |
remove | |
public void remove(Page page) | |
page - getPage | |
public Page getPage(int ID) | |
ID - getPage | |
public Page getPage(java.lang.String name) | |
name - 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() | |