Click or drag to resize

PdfNameTreeCollection Class

Represents a document’s name tree as a dictionary.
Inheritance Hierarchy
SystemObject
  Patagames.Pdf.Net.WrappersPdfWrapper
    Patagames.Pdf.Net.WrappersPdfNameTreeCollection

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

The PdfNameTreeCollection type exposes the following members.

Constructors
 NameDescription
Public methodPdfNameTreeCollection(PdfDocument) Creates an empty document's name tree.
Public methodPdfNameTreeCollection(PdfDocument, PdfTypeDictionary) Initializes an instance of the PdfNameTreeCollection with the specified root node of the document's name tree.
Public methodPdfNameTreeCollection(PdfDocument, String) Initializes an instance of the PdfNameTreeCollection with the specified document's name tree.
Top
Properties
 NameDescription
Public propertyCount Gets the number of elements contained in a PdfNameTreeCollection object.
Public propertyDocument Gets the document with which the collection is associated.
Public propertyIsReadOnly Gets a value indicating whether the PdfNameTreeCollection is read-only.
Public propertyItem Gets and sets the value associated with a specific name in a PdfNameTreeCollection object.
Public propertyKeys Gets an ICollectionT containing the keys of the PdfNameTreeCollection.
Public propertyValues Gets an ICollectionT containing the values in the PdfNameTreeCollection.
Top
Methods
 NameDescription
Public methodAdd Adds an element with the specified name and value to a PdfNameTreeCollection object.
Public methodClear Removes all elements from a PdfNameTreeCollection object.
Public methodContainsKey Determines whether a PdfNameTreeCollection object contains a specific name.
Public methodCopyTo Copies PdfNameTreeCollection 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 name in a PdfNameTreeCollection object.
Public methodKeyAt Returns the name at the specified index in a PdfNameTreeCollection object.
Public methodRemove Removes the element with the specified name from a PdfNameTreeCollection object.
Public methodRemoveAt Removes the element at the specified index of a PdfNameTreeCollection object.
Public methodSetAt Set the element at the specified index.
Public methodTryGetValue Gets the value associated with the specified key.
Top
See Also