Modifier and Type | Method and Description |
---|---|
void |
add(PdfAction action)
Adds new action into colleciton.
|
void |
clear()
Clear collection.
|
boolean |
contains(PdfAction item)
Not supported yet.
|
void |
copyTo(PdfAction[] array,
int index)
Copies actions array into collection.
|
void |
delete()
Delete all actions.
|
void |
delete(int index)
Removes action from collection by index.
|
PdfAction |
get_Item(int index)
Gets action by its index.
|
Object |
getSyncRoot()
Gets synchronization object.
|
boolean |
isReadOnly()
Returns true if collection is readonly.
|
boolean |
isSynchronized()
Returns true if object is synchronized.
|
com.aspose.ms.System.Collections.IEnumerator<PdfAction> |
iterator()
Returns enumerator for collection.
|
boolean |
remove(PdfAction item)
* Not supported yet.
|
int |
size()
Count of actions on the collection.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public int size()
Count of actions on the collection.
public boolean isSynchronized()
Returns true if object is synchronized.
public Object getSyncRoot()
Gets synchronization object.
public boolean isReadOnly()
Returns true if collection is readonly.
public void add(PdfAction action)
Adds new action into colleciton.
action
- Action which should be added.public void delete(int index)
Removes action from collection by index.
index
- Index of action to remove.public void delete()
Delete all actions.
public void copyTo(PdfAction[] array, int index)
Copies actions array into collection.
array
- Array of actions which must be copied into collection.index
- Index starting from which array will be copied.public com.aspose.ms.System.Collections.IEnumerator<PdfAction> iterator()
Returns enumerator for collection.
public void clear()
Clear collection.
public boolean contains(PdfAction item)
Returns true if give item presents in the collection.
item
- PdfAction instancepublic boolean remove(PdfAction item)
Removes item from collection.
item
- Item to delete.public PdfAction get_Item(int index)
Gets action by its index.
index
- Index of action.