OperatorWriter.Write

Overloads

Write(Byte[])Writes a byte array to the page.
Write(Byte[], Int32)Writes a portion of a byte array to the page.
Write(Byte[], Int32, Int32)Writes a portion of a byte array to the page.
Write(Int32)Writes an integer to the page.
Write(Single)Writes a floating point number to the page.

Write(Byte[])

Writes a byte array to the page.

public void Write(Byte[] data)
Sub Write(data As Byte())

Parameters

data
Byte[]

The byte array to output.

Licensing Info

This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Write(Byte[], Int32)

Writes a portion of a byte array to the page.

public void Write(Byte[] data, int length)
Sub Write(data As Byte(), length As Integer)

Parameters

data
Byte[]

The byte array to output.

length
Int32

The length to output.

Licensing Info

This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Write(Byte[], Int32, Int32)

Writes a portion of a byte array to the page.

public void Write(Byte[] data, int start, int length)
Sub Write(data As Byte(), start As Integer, length As Integer)

Parameters

data
Byte[]

The byte array to output.

start
Int32

The start index of source.

length
Int32

The length to output.

Licensing Info

This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Write(Int32)

Writes an integer to the page.

public void Write(int value)
Sub Write(value As Integer)

Parameters

value
Int32

Number to write.

Licensing Info

This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Write(Single)

Writes a floating point number to the page.

public void Write(float value)
Sub Write(value As Single)

Parameters

value
Single

Number to write.

Licensing Info

This method is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

See Also

OperatorWriter
ceTe.DynamicPDF.IO

In this topic