java.lang.ObjectCollection
com.aspose.diagram.WindowCollection
public class WindowCollection
| Property Getters/Setters Summary | ||
|---|---|---|
int | getClientHeight() | |
void | setClientHeight(int) | |
| Optional int. | ||
int | getClientWidth() | |
void | setClientWidth(int) | |
| Optional int. | ||
int | getCount() | → inherited from Collection
|
| Gets the number of elements actually contained in the collection. | ||
Window | get(int) | |
| Gets the element at the specified index. | ||
| Method Summary | ||
|---|---|---|
int | add(Window window) | |
| Add the window 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(Window window) | |
| Remove the window from the collection. | ||
| Property Getters/Setters Detail |
|---|
getClientWidth/setClientWidth | |
public int getClientWidth() / public void setClientWidth(int value) | |
getClientHeight/setClientHeight | |
public int getClientHeight() / public void setClientHeight(int value) | |
getCount | → inherited from Collection
|
public int getCount() | |
get | |
public Window get(int index) | |
index - | Method Detail |
|---|
add | |
public int add(Window window) | |
window - remove | |
public void remove(Window window) | |
window - 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() | |