PdfCollection(T) Class

Represents a strongly typed read-only collection of PDF objects that can be accessed by index.

Inheritance Hierarchy

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public class PdfCollection<T> : ICollection<T>, 
	IEnumerable<T>, IEnumerable, ICollection
VB
Public Class PdfCollection(Of T)
	Implements ICollection(Of T), IEnumerable(Of T), 
	IEnumerable, ICollection

Type Parameters

T
The type of elements in the collection.

The PdfCollection<T> type exposes the following members.

Properties

  NameDescription
Public propertyCount
Gets the number of elements actually contained in the PdfCollection<T>.
Public propertyItem
Gets the element at the specified index.

Methods

  NameDescription
Public methodContains
Determines whether the collection contains a specific value.
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetAt
Gets the element at the specified index.
Public methodGetEnumerator
Returns an enumerator that iterates through a collection.
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodIndexOf
Determines the index of a specific item in the collection.
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)

See Also