←Select platform

PDFDocument Constructor(Stream,string)

Summary

Initializes a new PDFDocument from the specified stream containing a PDF file and (optional) password.

Syntax

C#
VB
C++
public PDFDocument( 
   Stream stream, 
   string password 
) 
Public Function New( _ 
   ByVal stream As Stream, _ 
   ByVal password As String _ 
) 
public: 
PDFDocument(  
   Stream^ stream, 
   String^ password 
) 

Parameters

stream
The stream containing an existing PDF file. This cannot be null and must support reading and seeking.

password
The password to use if stream contains an encrypted PDF file.

Remarks

The PDFDocument class encapsulates a PDF document on disk or stream and allows you to read the pages, objects and images from the document. stream must be kept alive as long as this PDFDocument object is alive and should not be disposed. The stream can be safely disposed when this PDFDocument is disposed. stream must contain the data of a valid PDF file. If the PDF file is encrypted, then password is used to try and decrypt the file. If the password value is not correct, an exception will be thrown. Another way of loading PDF documents is to use the PDFDocument(Stream stream) constructor. This constructor does not work on encrypted PDF files. Use the PDFFile.IsEncrypted to determine whether a PDF file is encrypted.

This method will initialize the members of PDFDocument as follows:

Use PDFDocument Constructor(string,string) to create a PDF document from a file on disk.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Pdf Assembly