DocumentWriter.WriteNumber
Overloads
WriteNumber(Byte[], Int32, Int32) | Writes a number to the document. |
WriteNumber(Int16) | Writes a short to the document. |
WriteNumber(Int32) | Writes an integer to the document. |
WriteNumber(Single) | Writes a float to the document. |
WriteNumber(Byte[], Int32, Int32)
Writes a number to the document.
public abstract void WriteNumber(Byte[] data, int start, int length)
MustOverride Sub WriteNumber(data As Byte(), start As Integer, length As Integer)
Parameters
- data
- Byte[]
The byte array containing the number to be written.
- start
- Int32
Start of number.
- length
- Int32
Length of number.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
WriteNumber(Int16)
Writes a short to the document.
public abstract void WriteNumber(short value)
MustOverride Sub WriteNumber(value As Short)
Parameters
- value
- Int16
The value to write.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
WriteNumber(Int32)
Writes an integer to the document.
public abstract void WriteNumber(int value)
MustOverride Sub WriteNumber(value As Integer)
Parameters
- value
- Int32
The value to write.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.
WriteNumber(Single)
Writes a float to the document.
public abstract void WriteNumber(float value)
MustOverride Sub WriteNumber(value As Single)
Parameters
- value
- Single
The value to write.
Licensing Info
This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:
- An active DynamicPDF Ultimate Subscription
- An active DynamicPDF Professional or Professional Plus Subscription with DynamicPDF Core Suite selected.
- A DynamicPDF Core Suite for .NET v12.X Developer License.