Write the modified document to a stream, eg a FileStream or MemoryStream.
Namespace: TallComponents.PDFAssembly: TallComponents.PDF.Kit (in TallComponents.PDF.Kit.dll) Version: 3.0.69.0
Syntax
| C# |
|---|
public void Write( Stream stream, DocumentWriteMode writeMode ) |
| Visual Basic |
|---|
Public Sub Write ( _ stream As Stream, _ writeMode As DocumentWriteMode _ ) |
Parameters
- stream
- Type: System.IO..::..Stream
Write the document to this stream.
- writeMode
- Type: TallComponents.PDF..::..DocumentWriteMode
The write mode to use.
Remarks
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.