| SignDocDocumentLoadercreatePDF Method |
Create an empty PDF document.
The PDF document is invalid until you add at least one page.
SignDocDocument.addSignature() cannot be used until the document
has been saved.
Namespace:
de.softpro.signdocsdk
Assembly:
SPSignDoc_4.3_DotNetLib (in SPSignDoc_4.3_DotNetLib.dll) Version: 1.0.6773.37566
Syntaxpublic SignDocDocument createPDF(
int major,
int minor
)
Parameters
- major
- Type: SystemInt32
Major PDF version, must be 1 or 2. - minor
- Type: SystemInt32
Minor PDF version, must be 0 through 7 (if
@a aMajor is 1) or 0 (if @a aMajor is 2).
Return Value
Type:
SignDocDocument A new SignDocDocument object representing the
document. After use, SignDocDocument.close() should be
to free up native resources as soon as possible.
See Also