java.lang.ObjectCollection
com.aspose.diagram.FontCollection
public class FontCollection
| Constructor Summary |
|---|
FontCollection()
Constructor. |
| Property Getters/Setters Summary | ||
|---|---|---|
int | getCount() | → inherited from Collection
|
| Gets the number of elements actually contained in the collection. | ||
Font | get(int) | |
| Gets the element at the specified index. | ||
| Method Summary | ||
|---|---|---|
int | add(Font font) | |
| Add the Font object in the collection. | ||
void | clear() | → inherited from Collection
|
| Removes all elements from collection. | ||
Font | getFont(int ID) | |
| Gets the element at the specified ID. | ||
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(Font font) | |
| Remove the Font object from the collection. | ||
| Constructor Detail |
|---|
public FontCollection()
| Property Getters/Setters Detail |
|---|
getCount | → inherited from Collection
|
public int getCount() | |
get | |
public Font get(int index) | |
index - | Method Detail |
|---|
add | |
public int add(Font font) | |
font - remove | |
public void remove(Font font) | |
font - getFont | |
public Font getFont(int ID) | |
ID - 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() | |