Searches this dictionary for a given key and throw an exception if the key is not found.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public DictIterator Get(
string key
)
Public Function Get (
key As String
) As DictIterator
public:
virtual DictIterator^ Get(
[InAttribute] String^ key
) sealed
Parameters
- key
- Type: SystemString
A key to search for in this dictionary.
Return Value
Type:
DictIterator
Null if the value matching specified key is a Null object; Otherwise, return the iterator
(
DictIterator) to the matching key/value pair.
See Also