Adds the specified key and a new real object to the dictionary.
Namespace:
BitMiracle.Docotic.Pdf
Assembly:
BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)
Syntax
C#
public void AddNumber(
string key,
double value
)
VB
Public Sub AddNumber (
key As String,
value As Double
)
Parameters
- key
- Type: System.String
The key of the element to add. - value
- Type: System.Double
The value of the real object.
Exceptions
Remarks
The key must not be null and should not start with a
leading slash. Characters in the key should not be escaped. Empty string
(string.Empty) is a valid key.
See Also