Click or drag to resize

ObjGetDictIterator Method

Gets the DictIterator used for traversing the items in this Dict Obj.

Namespace:  pdftron.SDF
Assembly:  pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax
public DictIterator GetDictIterator()

Return Value

Type: DictIterator
An iterator(DictIterator) that points to the first element in the dictionary.
Examples
DictIterator itr = dict.GetDictIterator();
while (itr.HasNext()) {
    Obj key = itr.Key();
    Obj value = itr.Value();
    // ...
    itr.next();
}
See Also