public abstract class Outlines extends Object implements Iterable<OutlineItemCollection>
Class describes collection of outlines.
Constructor and Description |
---|
Outlines() |
Modifier and Type | Method and Description |
---|---|
abstract void |
add(OutlineItemCollection item)
Adds outline item to collection.
|
abstract void |
clear()
Clears all items from the collection.
|
abstract boolean |
contains(OutlineItemCollection item)
Always throws NotImplementedException
|
abstract void |
copyTo(OutlineItemCollection[] array,
int arrayIndex)
Copies the outline entries to an System.Array, starting at a particular System.Array index.
|
abstract int |
getVisibleCount()
Gets the total number of outline items at all levels in the document outline hierarchy.
|
abstract boolean |
isReadOnly()
Gets a value indicating whether the collection is read-only.
|
com.aspose.ms.System.Collections.IEnumerator |
iterator_Rename_Namesake() |
abstract Iterator<OutlineItemCollection> |
iterator()
Returns an enumerator that iterates through the collection.
|
abstract boolean |
remove(OutlineItemCollection item)
Remove outline collection item.
|
abstract int |
size() |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public abstract int size()
public abstract boolean isReadOnly()
Gets a value indicating whether the collection is read-only.
public abstract int getVisibleCount()
Gets the total number of outline items at all levels in the document outline hierarchy.
public abstract void add(OutlineItemCollection item)
Adds outline item to collection.
item
- The outline item to be added.public abstract void clear()
Clears all items from the collection.
public abstract boolean contains(OutlineItemCollection item)
Always throws NotImplementedException
item
- The object to locate in the collectionpublic abstract void copyTo(OutlineItemCollection[] array, int arrayIndex)
Copies the outline entries to an System.Array, starting at a particular System.Array index.
array
- The one-dimensional System.Array that is the destination. Must have zero-based indexing.arrayIndex
- The zero-based index in array at which copying begins.public abstract Iterator<OutlineItemCollection> iterator()
Returns an enumerator that iterates through the collection.
iterator
in interface Iterable<OutlineItemCollection>
public abstract boolean remove(OutlineItemCollection item)
Remove outline collection item.
item
- Item to delete.public final com.aspose.ms.System.Collections.IEnumerator iterator_Rename_Namesake()