| PdfNameTreeCollection Class |
Represents a document’s name tree as a dictionary.
Inheritance Hierarchy Namespace: Patagames.Pdf.Net.WrappersAssembly: 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
Public Class PdfNameTreeCollection
Inherits PdfWrapper
Implements IDictionary(Of String, PdfTypeBase),
ICollection(Of KeyValuePair(Of String, PdfTypeBase)), IEnumerable(Of KeyValuePair(Of String, PdfTypeBase)),
IEnumerable
public ref class PdfNameTreeCollection : public PdfWrapper,
IDictionary<String^, PdfTypeBase^>, ICollection<KeyValuePair<String^, PdfTypeBase^>>,
IEnumerable<KeyValuePair<String^, PdfTypeBase^>>, IEnumerable
type PdfNameTreeCollection =
class
inherit PdfWrapper
interface IDictionary<string, PdfTypeBase>
interface ICollection<KeyValuePair<string, PdfTypeBase>>
interface IEnumerable<KeyValuePair<string, PdfTypeBase>>
interface IEnumerable
end
public class PdfNameTreeCollection extends PdfWrapper implements IDictionary<String, PdfTypeBase>,
ICollection<KeyValuePair<String, PdfTypeBase>>, IEnumerable<KeyValuePair<String, PdfTypeBase>>,
IEnumerable
Patagames.Pdf.Net.Wrappers.PdfNameTreeCollection = function();
Type.createClass(
'Patagames.Pdf.Net.Wrappers.PdfNameTreeCollection',
Patagames.Pdf.Net.Wrappers.PdfWrapper,
IDictionary`2,
ICollection`1,
IEnumerable`1,
IEnumerable);
The PdfNameTreeCollection type exposes the following members.
Constructors Properties | Name | Description |
---|
| Count |
Gets the number of elements contained in a PdfNameTreeCollection object.
|
| Document |
Gets the document with which the collection is associated.
|
| IsReadOnly |
Gets a value indicating whether the PdfNameTreeCollection is read-only.
|
| Item |
Gets and sets the value associated with a specific name in a PdfNameTreeCollection object.
|
| Keys |
Gets an ICollectionT containing the keys of the PdfNameTreeCollection.
|
| Values |
Gets an ICollectionT containing the values in the PdfNameTreeCollection.
|
TopMethods | Name | Description |
---|
| Add |
Adds an element with the specified name and value to a PdfNameTreeCollection object.
|
| Clear |
Removes all elements from a PdfNameTreeCollection object.
|
| ContainsKey |
Determines whether a PdfNameTreeCollection object contains a specific name.
|
| CopyTo |
Copies PdfNameTreeCollection elements to a one-dimensional System.Array object, starting at the specified index in the array.
|
| GetAt |
Get the element at the specified index.
|
| GetEnumerator |
Returns an enumerator that iterates through the collection.
|
| IndexOf |
Returns the zero-based index of the specified name in a PdfNameTreeCollection object.
|
| KeyAt |
Returns the name at the specified index in a PdfNameTreeCollection object.
|
| Remove |
Removes the element with the specified name from a PdfNameTreeCollection object.
|
| RemoveAt |
Removes the element at the specified index of a PdfNameTreeCollection object.
|
| SetAt |
Set the element at the specified index.
|
| TryGetValue |
Gets the value associated with the specified key.
|
TopSee Also