Click or drag to resize

PdfViewerLoadDocument(Byte, String) Method

Loads the PDF document from the specified byte array.

Namespace: Patagames.Pdf.Net.Controls.WinForms
Assembly: Patagames.Pdf.WinForms (in Patagames.Pdf.WinForms.dll) Version: 4.100.2704
Syntax
public void LoadDocument(
	byte[] pdf,
	string password = null
)

Parameters

pdf  Byte
The byte array containing the PDF document to load.
password  String  (Optional)
A string used as the password for PDF file. If no password needed, empty or NULL can be used.
Exceptions
ExceptionCondition
UnknownErrorExceptionunknown error
PdfFileNotFoundExceptionfile not found or could not be opened
BadFormatExceptionfile not in PDF format or corrupted
InvalidPasswordExceptionpassword required or incorrect password
UnsupportedSecuritySchemeExceptionunsupported security scheme
PdfiumExceptionError occured in PDFium. See ErrorCode for detail
NoLicenseExceptionThis exception thrown only in trial mode if document cannot be opened due to a license restrictions"
Remarks
Note  Note

The application should maintain the byte array being valid until the PDF document close.

With the trial version the documents which size is smaller than 1024 Kb, or greater than 10 Mb can be loaded without any restrictions. For other documents the allowed ranges is 1.5 - 2 Mb; 2.5 - 3 Mb; 3.5 - 4 Mb; 4.5 - 5 Mb and so on.

See Also