Click or drag to resize

NameTreeGetIterator Method

Gets the iterator.

Namespace:  pdftron.SDF
Assembly:  pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax
public NameTreeIterator GetIterator()

Return Value

Type: NameTreeIterator
An iterator to the first key/value pair (i.e. NNTreeData) in the document. You can use the increment operator on the returned iterator to traverse all entries stored under the NameTree.
Examples
for (NameTreeIterator i = dests.GetIterator(); i.HasNext(); i.Next()) {
    string key = i.Key().GetAsPDFText();
}
See Also