public interface IDocumentPropertyCollection
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Removes all properties from the collection.
|
boolean |
contains(java.lang.String name)
Determines whether the document property with specified name is contained in
IDocumentPropertyCollection. |
IDocumentProperty |
get(int index)
Returns the
IDocumentProperty object from a collection. |
IDocumentProperty |
get(java.lang.String name)
Returns the
IDocumentProperty object with the specified name. |
int |
getCount()
Returns the number of document property in the collection.
|
int |
indexOf(java.lang.String name)
Gets the index of a property by name.
|
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.
|
int getCount()
IDocumentProperty get(java.lang.String name)
IDocumentProperty object with the specified name.name - Specifies the name of an element in the collection.IDocumentProperty get(int index)
IDocumentProperty object from a collection.index - Specifies the index of an element in the collection.boolean contains(java.lang.String name)
IDocumentPropertyCollection.name - The document property name.void clear()
int indexOf(java.lang.String name)
name - The case-insensitive name of the property.void remove(java.lang.String name)
name - The case-insensitive name of the property.void removeAt(int index)
index - The zero based index.