Namespace TallComponents.PDF.Layout
Class IndexRangeCollection
A collection (sequence) of index ranges.
Syntax
public class IndexRangeCollection
: Object
,
IEnumerable<IndexRange>
Constructors
Properties
Int32 Count
The number of IndexRange items in the collection.
IndexRange Item
Returns the IndexRange at the specified index.
Methods
Void Add(IndexRange)
Add an IndexRange to the collection.
Void AddRange(IndexRange[])
Add a collection of IndexRange items.
Void Clear()
Remove all IndexRange elements from the collection.
Boolean Contains(IndexRange)
Returns true if the collection contains the specified item.
IEnumerator<IndexRange> GetEnumerator()
Get an IndexRange enumerator.
Int32 IndexOf(IndexRange)
Returns the index of the specified item.
Void Insert(Int32,IndexRange)
Insert an IndexRange at the specified index.
Boolean Remove(IndexRange)
Remove an IndexRange from the collection.
Void RemoveAt(Int32)
Remove the IndexRange at the specified index.