Puts a new entry in the name tree. If an entry with this key is already in the tree, it is replaced.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void Put(
byte[] key,
Obj value
)
Public Sub Put (
key As Byte(),
value As Obj
)
public:
virtual void Put(
[InAttribute] array<unsigned char>^ key,
[InAttribute] Obj^ value
) sealed
function Put(key, value);
Parameters
- key
- Type: SystemByte
A data buffer representing the key of the new entry.
- value
- Type: pdftron.SDFObj
The value of the new entry.
See Also