Class PdfCollection<T>
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
Represents a strongly typed read-only collection of PDF objects that can be accessed by index.
public class PdfCollection<T> : ICollection<T>, IEnumerable<T>, ICollection, IEnumerable
Type Parameters
T
The type of elements in the collection.
- Inheritance
-
PdfCollection<T>
- Implements
-
ICollection<T>IEnumerable<T>
- Derived
- Inherited Members
Remarks
The Docotic.Pdf Library Documentation page contains links to articles, guides, and sample code.
Properties
- Count
Gets the number of elements actually contained in the PdfCollection<T>.
- IsReadOnly
Gets a value indicating whether the collection is read-only.
- IsSynchronized
Gets a value indicating whether access to the collection is synchronized (thread safe).
- this[int]
Gets the element at the specified index.
- SyncRoot
Gets an object that can be used to synchronize access to the collection.
Methods
- Add(T)
Adds an item to the collection.
- Clear()
Removes all items from the collection.
- Contains(T)
Determines whether the collection contains a specific value.
- CopyTo(Array, int)
Copies the elements of the collection to an System.Array, starting at a particular System.Array index.
- CopyTo(T[], int)
Copies the elements of the collection to an System.Array, starting at a particular System.Array index.
- GetAt(int)
Gets the element at the specified index.
- GetEnumerator()
Returns an enumerator that iterates through a collection.
- IndexOf(T)
Determines the index of a specific item in the collection.
- Remove(T)
Removes the first occurrence of a specific object from the collection.