Searches this dictionary for a given key.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj FindObj(
string key
)
Public Function FindObj (
key As String
) As Obj
public:
virtual Obj^ FindObj(
[InAttribute] String^ key
) sealed
Parameters
- key
- Type: SystemString
A key to search for in this dictionary.
Return Value
Type:
Obj
Null if the dictionary does not contain the specified key; Otherwise, return the corresponding value.
Remarks
A dictionary entry whose value is Null is equivalent to an absent entry.
See Also