java.lang.Object
com.aspose.words.CustomXmlSchemaCollection
public class CustomXmlSchemaCollection
You do not create instances of this class. You access the collection of XML schemas of a custom XML part
via the
| Property Getters/Setters Summary | ||
|---|---|---|
int | getCount() | |
| Gets the number of elements contained in the collection. | ||
java.lang.String | get(int index) | |
void | set(int index, java.lang.String value) | |
| Gets or sets the element at the specified index. | ||
| Method Summary | ||
|---|---|---|
void | add(java.lang.String value) | |
| Adds an item to the collection. | ||
void | clear() | |
| Removes all elements from the collection. | ||
CustomXmlSchemaCollection | deepClone() | |
| Makes a deep clone of this object. | ||
int | indexOf(java.lang.String value) | |
| Returns the zero-based index of the specified value in the collection. | ||
java.util.Iterator | iterator() | |
| Returns an iterator object that can be used to iterate over all items in the collection. | ||
void | remove(java.lang.String name) | |
| Removes the specified value from the collection. | ||
void | removeAt(int index) | |
| Removes a value at the specified index. | ||
| Property Getters/Setters Detail |
|---|
getCount | |
public int getCount() | |
get/set | |
public java.lang.String get(int index) / public void set(int index, java.lang.String value) | |
| Method Detail |
|---|
add | |
public void add(java.lang.String value) | |
value - The item to add.clear | |
public void clear() | |
deepClone | |
public CustomXmlSchemaCollection deepClone() | |
indexOf | |
public int indexOf(java.lang.String value) | |
value - The case-sensitive value to locate.iterator | |
public java.util.Iterator iterator() | |
remove | |
public void remove(java.lang.String name) | |
name - The case-sensitive value to remove.removeAt | |
public void removeAt(int index) | |
index - The zero based index.