 | PdfArrayWrapperT Class |
A specialized collection of objects of type
T that does not store the objects themselves,
but instead maps them to objects in the underlying
PdfTypeArray.
Inheritance Hierarchy Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic class PdfArrayWrapper<T> : IList<T>,
ICollection<T>, IEnumerable<T>, IEnumerable
Public Class PdfArrayWrapper(Of T)
Implements IList(Of T), ICollection(Of T),
IEnumerable(Of T), IEnumerable
generic<typename T>
public ref class PdfArrayWrapper : IList<T>,
ICollection<T>, IEnumerable<T>, IEnumerable
type PdfArrayWrapper<'T> =
class
interface IList<'T>
interface ICollection<'T>
interface IEnumerable<'T>
interface IEnumerable
endJ# supports the use of generic APIs, but not the declaration of new ones.
JavaScript does not support generic types or methods.
Type Parameters
- T
- Any class that can be converted to/from PdfTypeBase by the calling code.
The PdfArrayWrapperT type exposes the following members.
Constructors
Properties| | Name | Description |
|---|
 | Array |
Gets the underlying PdfTypeArray.
|
 | Count |
Gets the number of elements contained in the collection.
|
 | IsReadOnly |
Gets a value indicating whether the collection is read-only.
|
 | Item |
Gets or sets the element at the specified index
|
Top
Methods| | Name | Description |
|---|
 | Add |
Adds an item to the collection.
|
 | Clear |
Removes all items from the collection
|
 | Contains |
Determines whether the collection contains a specific item.
|
 | CopyTo |
Copies the elements of the collection to the array, starting at a particular index.
|
 | GetEnumerator |
Returns an enumerator that iterates through the collection.
|
 | IndexOf |
Determines the index of a specific item in the collection.
|
 | Insert |
Inserts an item to the collection at the specified index.
|
 | Remove |
Removes the first occurrence of a specific item from the collection.
|
 | RemoveAt |
Removes the collection item at the specified index.
|
Top
See Also
Inheritance Hierarchy