Write the modified document to any writer.

Namespace: TallComponents.PDF
Assembly: TallComponents.PDF.Kit (in TallComponents.PDF.Kit.dll) Version: 3.0.69.0

Syntax

C#
public void Write(
	BinaryWriter binaryWriter,
	DocumentWriteMode writeMode
)
Visual Basic
Public Sub Write ( _
	binaryWriter As BinaryWriter, _
	writeMode As DocumentWriteMode _
)

Parameters

binaryWriter
Type: System.IO..::..BinaryWriter
Write the document to this writer.
writeMode
Type: TallComponents.PDF..::..DocumentWriteMode
The write mode to use.

Remarks

Note that this allows you to write the document to a file, HTTP response or memory with full control.

Note that you cannot write more than once on the same document instance. After calling Document.Write() information in this instance can be incorrect.

For signing support you must be sure the underlaying output stream is seekable. If the stream is writable only (eg Response.OutputStream) an exception will be raised.

See Also