Inserts a <key, ObjType::e_number> pair in the dictionary.
Namespace:
pdftron.SDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public Obj PutNumber(
string key,
double value
)
Public Function PutNumber (
key As String,
value As Double
) As Obj
public:
virtual Obj^ PutNumber(
[InAttribute] String^ key,
[InAttribute] double value
) sealed
function PutNumber(key, value);
Parameters
- key
- Type: SystemString
The key of the value to set.
- value
- Type: SystemDouble
The value of the ObjType::e_number object to be inserted into the dictionary.
Return Value
Type:
Obj
A newly created Number 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