PDFDoc Constructor (IInputStream, String) |
Creates a new PDF document from an IInputStream instance.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public PDFDoc(
IInputStream inputStream,
string filePath
)
Public Sub New (
inputStream As IInputStream,
filePath As String
)
public:
PDFDoc(
[InAttribute] IInputStream^ inputStream,
[InAttribute] String^ filePath
)
pdftron.PDF.PDFDoc = function(inputStream, filePath);
Parameters
- inputStream
- Type: IInputStream
An input stream where the source PDF document can be read from. - filePath
- Type: SystemString
The file path of the document. This will only be used for the RecentlyUsedCache
Remarks
Make sure to call InitSecurityHandler to check whether the document is encrypted.
See Also