DocumentWriter.Write

Overloads

Write(Byte[])Writes a byte array to the document.
Write(Byte[], Int32)Writes a portion of a byte array to the document.
Write(Byte[], Int32, Int32)Writes a portion of a byte array to the document.

Write(Byte[])

Writes a byte array to the document.

public abstract void Write(Byte[] data)
MustOverride 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 document.

public abstract void Write(Byte[] data, int length)
MustOverride 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 document.

public abstract void Write(Byte[] data, int start, int length)
MustOverride 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:

See Also

DocumentWriter
ceTe.DynamicPDF.IO

In this topic