Click or drag to resize

PdfStorageAdapterGetDocumentOriginalAsPdf Method (Int32)

Retrieve a document previously loaded into a PdfWebControl instance with no modifications, as a PDF.

Namespace:  RadPdf.Integration
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public byte[] GetDocumentOriginalAsPdf(
	int documentID
)

Parameters

documentID
Type: SystemInt32
DocumentID as an int.

Return Value

Type: Byte
The document before any changes in PDF format associated with the documentID.
Exceptions
ExceptionCondition
InvalidOperationExceptionThe current instance has already been disposed.
RadPdfDocumentExceptionThe document was not found in storage.
Remarks
If the document is not found or inaccessible, an exception will be thrown. The original document is a copy of the PDF as loaded internally by a PdfWebControl instance. For example, password protected documents which were loaded will not be encrypted when retrieved with this method. PDF documents which still require a password to be opened (DocumentPasswordPending is true) will not be retrieved.
See Also