DocumentOpen |
Open a PDF document together with an FDF file.
Documents opened with this method are read-only and cannot be modified.public static Document OpenWithFdf( Stream pdfStream, Stream fdfStream, string password )
The stream where the PDF document is stored.
Read access is required.
The stream where the FDF file is stored.
Read access is required.
| Exception | Condition |
|---|---|
| PasswordException | if the file is encrypted and the password is not valid. |
| IOException | Error reading from the stream. |
| CorruptException | if the file is corrupt or not a PDF. |
| UnsupportedFeatureException | if the file is a PDF collection. |
| UnsupportedFeatureException | if the PDF contains unrendered XFA fields. |
| ConformanceException | if the document's conformance level is not supported |
| ArgumentNullException | if pdfStream is . |
| ArgumentNullException | if fdfStream is . |