Retrieves a name tree, with the given key name, from the '/Root/Names' dictionary of the doc.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static NameTree Find(
SDFDoc doc,
string name
)
Public Shared Function Find (
doc As SDFDoc,
name As String
) As NameTree
public:
static NameTree^ Find(
[InAttribute] SDFDoc^ doc,
[InAttribute] String^ name
)
pdftron.SDF.NameTree.Find = function(doc, name);
Parameters
- doc
- Type: pdftron.SDFSDFDoc
The document in which to search for the name.
- name
- Type: SystemString
The name of the name tree to find.
Return Value
Type:
NameTree
The requested NameTree. If the requested NameTree exists NameTree.IsValid() will return true, and false
otherwise.
See Also