Opens an existing document.

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

Syntax

C#
public Document(
	Stream stream
)
Visual Basic (Declaration)
Public Sub New ( _
	stream As Stream _
)

Parameters

stream
Type: System.IO..::.Stream
The stream from which the document is read.

Remarks

The document should have no open password set.

This method is optimized for speed, and will cache some data into memory if any is true:

  • the stream does not provide random access (!stream.CanSeek);
  • if the stream is read from a file (stream is FileStream).
If caching does not occur, the stream must be kept open until the (target) document is written.

If you want to have full control over the caching behaviour, please use the overload with the BinaryReader, see the remarks available by that constructor for detailed information.

See Also