public final class TextFragmentCollection extends Object implements Iterable<TextFragment>
Represents a text fragments collection
Modifier and Type | Method and Description |
---|---|
TextFragment |
get_Item(int index)
Gets the text fragment element at the specified index.
|
Object |
getSyncRoot()
Gets an object that can be used to synchronize access to the collection.
|
boolean |
isSynchronized()
Gets a value indicating whether access to the collection is synchronized (thread safe).
|
Iterator<TextFragment> |
iterator()
Returns an enumerator for the entire collection.
|
int |
size()
Gets the number of
TextFragment object elements actually contained in the collection. |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public int size()
Gets the number of TextFragment
object elements actually contained in the collection.
public Object getSyncRoot()
Gets an object that can be used to synchronize access to the collection.
public boolean isSynchronized()
Gets a value indicating whether access to the collection is synchronized (thread safe).
public Iterator<TextFragment> iterator()
Returns an enumerator for the entire collection.
iterator
in interface Iterable<TextFragment>
public TextFragment get_Item(int index)
Gets the text fragment element at the specified index.
Index should be in the range [1..n] where n equals to the text fragments count.index
- Index within the collection.Copyright © 2017 Aspose. All Rights Reserved.