Inserts a <key, ObjType::e_name> pair in the dictionary.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj PutName(
string key,
string name
)
Public Function PutName (
key As String,
name As String
) As Obj
public:
virtual Obj^ PutName(
[InAttribute] String^ key,
[InAttribute] String^ name
) sealed
function PutName(key, name);
Parameters
- key
- Type: SystemString
The key of the value to set.
- name
- Type: SystemString
The value of the ObjType::e_name object to be inserted into the dictionary.
Return Value
Type:
Obj
A newly created Name object.
Remarks
If this dictionary already contains an entry with the same key, the old entry will be deleted and all
DictIterators to this entry will be invalidated.
See Also