Inserts a <key, Obj> pair in the dictionary.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj Put(
string key,
Obj value
)
Public Function Put (
key As String,
value As Obj
) As Obj
public:
virtual Obj^ Put(
[InAttribute] String^ key,
[InAttribute] Obj^ value
) sealed
function Put(key, value);
Parameters
- key
- Type: SystemString
The key of the value to set.
- value
- Type: pdftron.SDFObj
The value to be inserted into the dictionary. If 'value' is indirect (i.e. is a shared) object it will
be inserted by reference, otherwise the object will be cloned and then inserted into the dictionary.
Return Value
Type:
Obj
The newly inserted object.
See Also