java.lang.Object
com.aspose.words.StructuredDocumentTagCollection
public class StructuredDocumentTagCollection
| Property Getters/Setters Summary | ||
|---|---|---|
int | getCount() | |
| Returns the number of structured document tags in the collection. | ||
IStructuredDocumentTag | get(int id) | |
| Returns the structured document tag by Id. | ||
| Method Summary | ||
|---|---|---|
IStructuredDocumentTag | getByTag(java.lang.String tag) | |
| Returns the first structured document tag encountered in the collection with the specified tag. | ||
IStructuredDocumentTag | getByTitle(java.lang.String title) | |
| Returns the first structured document tag encountered in the collection with the specified title. | ||
java.util.Iterator<IStructuredDocumentTag> | iterator() | |
| Returns an enumerator object. | ||
void | remove(int id) | |
| Removes the structured document tag with the specified identifier. | ||
| Property Getters/Setters Detail |
|---|
getCount | |
public int getCount() | |
get | |
public IStructuredDocumentTag get(int id) | |
id - The structured document tag identifier.| Method Detail |
|---|
getByTag | |
public IStructuredDocumentTag getByTag(java.lang.String tag) | |
Returns null if the structured document tag with the specified tag cannot be found.
tag - The tag of the structured document tag.getByTitle | |
public IStructuredDocumentTag getByTitle(java.lang.String title) | |
Returns null if the structured document tag with the specified title cannot be found.
title - The title of structured document tag.iterator | |
public java.util.Iterator<IStructuredDocumentTag> iterator() | |
remove | |
public void remove(int id) | |
id - The structured document tag identifier.