Write the modified document to any writer.

Namespace: TallComponents.PDF
Assembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.46.0

Syntax

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

Parameters

binaryWriter
Type: System.IO..::..BinaryWriter
Write the document to this writer.

Remarks

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

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

See Also