Modifier and Type | Method and Description |
---|---|
void |
add(Option item)
Not supported yet.
|
void |
clear()
Not supported yet.
|
boolean |
contains(Option item)
Not implemented yet.
|
void |
deleteOption(String name)
Deletes option by its name.
|
Option |
get_Item(int index)
Gets option by index.
|
Option |
get_Item(String name)
Gets option by its name.
|
Option |
get(int index)
Gets option by index.
|
Option |
get(String name)
Gets option from colleciton by option name.
|
Object |
getSyncRoot()
Synchronization object of the collection.
|
boolean |
isReadOnly()
Gets a value indicating if collection is readonly.
|
boolean |
isSynchronized()
Returns true of object is synchronized.
|
com.aspose.ms.System.Collections.IEnumerator |
iterator_Rename_Namesake()
Returns enumerator for options in collection.
|
com.aspose.ms.System.Collections.IEnumerator<Option> |
iterator()
Returns enumerator for options in collection.
|
boolean |
remove(Option item)
Not implemented yet.
|
int |
size()
Gets number of options.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public boolean isSynchronized()
Returns true of object is synchronized.
public boolean isReadOnly()
Gets a value indicating if collection is readonly.
public Object getSyncRoot()
Synchronization object of the collection.
public int size()
Gets number of options.
public com.aspose.ms.System.Collections.IEnumerator iterator_Rename_Namesake()
Returns enumerator for options in collection.
public com.aspose.ms.System.Collections.IEnumerator<Option> iterator()
Returns enumerator for options in collection.
public Option get(int index)
Gets option by index.
index
- Option index. Index should be in range [1..n] where n is options count.public Option get(String name)
Gets option from colleciton by option name.
name
- Option name.public Option get_Item(int index)
Gets option by index.
index
- Index of the option.public Option get_Item(String name)
Gets option by its name.
name
- Name of the option.public void deleteOption(String name)
Deletes option by its name.
name
- Name of the option to delete.public void add(Option item)
Not implemented yet.
item
- Option instancepublic void clear()
Not implemented yet.
public boolean contains(Option item)
Not implemented yet.
item
- Option instancepublic boolean remove(Option item)
Not implemented yet.
item
- Option instance