PDFDoc Constructor (Byte) |
Creates a new PDF document from an array of bytes.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public PDFDoc(
byte[] byteArray
)
Public Sub New (
byteArray As Byte()
)
public:
PDFDoc(
[InAttribute] array<unsigned char>^ byteArray
)
pdftron.PDF.PDFDoc = function(byteArray);
Parameters
- byteArray
- Type: SystemByte
An array of bytes representing a PDF document.
Remarks
Make sure to call InitSecurityHandler to check whether the document is encrypted.
See Also