Class PdfList<T>
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
Represents a strongly typed list of objects that can be accessed by index.
public class PdfList<T> : PdfCollection<T>, ICollection<T>, IEnumerable<T>, ICollection, IEnumerable
Type Parameters
T
The type of elements in the list.
- Inheritance
-
PdfList<T>
- Implements
-
ICollection<T>IEnumerable<T>
- Derived
- Inherited Members
Remarks
The Docotic.Pdf Library Documentation page contains links to articles, guides, and sample code.
Methods
- Add(T)
Adds an object to the end of the PdfList<T>.
- Clear()
Removes all elements from the PdfList<T>.
- Remove(T)
Removes the first occurrence of a specific object from the PdfList<T>.
- RemoveAt(int)
Removes the element at the specified index of the PdfList<T>.