Click or drag to resize

PdfNumberTreeCollection Class

Represents a number tree as a dictionary.
Inheritance Hierarchy
SystemObject
  Patagames.Pdf.Net.WrappersPdfWrapper
    Patagames.Pdf.Net.WrappersPdfNumberTreeCollection

Namespace: Patagames.Pdf.Net.Wrappers
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public class PdfNumberTreeCollection : PdfWrapper, 
	IDictionary<int, PdfTypeBase>, ICollection<KeyValuePair<int, PdfTypeBase>>, 
	IEnumerable<KeyValuePair<int, PdfTypeBase>>, IEnumerable

The PdfNumberTreeCollection type exposes the following members.

Constructors
 NameDescription
Public methodPdfNumberTreeCollection(PdfDocument) Creates an empty number tree.
Public methodPdfNumberTreeCollection(PdfDocument, PdfTypeDictionary) Initializes an instance of the PdfNumberTreeCollection with the specified root node of the number tree.
Top
Properties
 NameDescription
Public propertyCount Gets the number of elements contained in a PdfNumberTreeCollection object.
Public propertyDocument Gets the document with which the collection is associated.
Public propertyIsReadOnly Gets a value indicating whether the PdfNumberTreeCollection is read-only.
Public propertyItem Gets and sets the value associated with a specific key in a PdfNumberTreeCollection object.
Public propertyKeys Gets an ICollectionT containing the keys of the PdfNumberTreeCollection.
Public propertyValues Gets an ICollectionT containing the values in the PdfNumberTreeCollection.
Top
Methods
 NameDescription
Public methodAdd Adds an element with the provided key and value to the PdfNumberTreeCollection.
Public methodClear Removes all items from the PdfNumberTreeCollection object.
Public methodContainsKey Determines whether a PdfNumberTreeCollection object contains a specific key.
Public methodCopyTo Copies PdfNumberTreeCollection elements to a one-dimensional System.Array object, starting at the specified index in the array.
Public methodGetAt Get the element at the specified index.
Public methodGetEnumerator Returns an enumerator that iterates through the collection.
Public methodIndexOf Returns the zero-based index of the specified key in a PdfNumberTreeCollection object.
Public methodKeyAt Returns the key of an element at the specified index in a PdfNumberTreeCollection object.
Public methodRemove Removes the element with the specified key from a PdfNumberTreeCollection object.
Public methodRemoveAt Removes the element at the specified index of a PdfNumberTreeCollection object.
Public methodSetAt Set the element at the specified index.
Public methodTryGetValue Gets the value associated with the specified key.
Top
See Also