java.lang.Objectcom.aspose.words.CustomXmlPropertyCollection
public class CustomXmlPropertyCollection
Items are
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
Gets the number of elements contained in the collection. | ||
CustomXmlProperty | get(int index) | |
Gets a property at the specified index. | ||
CustomXmlProperty | get(java.lang.String name) | |
Gets a property with the specified name. |
Method Summary | ||
---|---|---|
void | add(CustomXmlProperty property) | |
Adds a property to the collection. | ||
void | clear() | |
Removes all elements from the collection. | ||
boolean | contains(java.lang.String name) | |
Determines whether the collection contains a property with the given name. | ||
int | indexOfKey(java.lang.String name) | |
Returns the zero-based index of the specified property 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 a property with the specified name from the collection. | ||
void | removeAt(int index) | |
Removes a property at the specified index. |
Property Getters/Setters Detail |
---|
getCount | |
public int getCount() |
get | |
public CustomXmlProperty get(int index) |
index
- Zero-based index of the property.get | |
public CustomXmlProperty get(java.lang.String name) |
name
- Case-sensitive name of the property to locate.Method Detail |
---|
add | |
public void add(CustomXmlProperty property) |
property
- The property to add.clear | |
public void clear() |
contains | |
public boolean contains(java.lang.String name) |
name
- Case-sensitive name of the property to locate.indexOfKey | |
public int indexOfKey(java.lang.String name) |
name
- The case-sensitive name of the property.iterator | |
public java.util.Iterator iterator() |
remove | |
public void remove(java.lang.String name) |
name
- The case-sensitive name of the property.removeAt | |
public void removeAt(int index) |
index
- The zero based index.