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.48.0.0 (3.48.0.0)
Syntax public byte[] GetDocumentOriginalAsPdf(
int documentID
)
Public Function GetDocumentOriginalAsPdf (
documentID As Integer
) As Byte()
Parameters
- documentID
- Type: SystemInt32
DocumentID as an int.
Return Value
Type:
ByteThe document before any changes in PDF format associated with the
documentID.
Exceptions 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