ObjPutString Method (String, Byte) |
Inserts a <key, ObjType::e_string> pair in the dictionary.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj PutString(
string key,
byte[] value
)
Public Function PutString (
key As String,
value As Byte()
) As Obj
public:
virtual Obj^ PutString(
[InAttribute] String^ key,
[InAttribute] array<unsigned char>^ value
) sealed
function PutString(key, value);
Parameters
- key
- Type: SystemString
The key of the value to set.
- value
- Type: SystemByte
The buffer used to set the value of the ObjType::e_string
object to be inserted into the dictionary.
Return Value
Type:
Obj
A newly created String 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