PdfDocumentCertification Constructor |
Initializes a new instance of the
PdfDocumentCertification class.
This class is used to represent the document certification and placement information
for certifying a PDF document. The class is only intended to be used with the
PdfDocument object.
Namespace:
Atalasoft.PdfDoc.DigitalSignatures
Assembly:
Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public PdfDocumentCertification(
CmsInformation cmsInfo,
DocumentMDPAllowedChanges allowedChanges,
bool isVisible,
int pageIndex,
PdfBounds bounds
)
Public Sub New (
cmsInfo As CmsInformation,
allowedChanges As DocumentMDPAllowedChanges,
isVisible As Boolean,
pageIndex As Integer,
bounds As PdfBounds
)
Parameters
- cmsInfo
- Type: Atalasoft.PdfDoc.DigitalSignaturesCmsInformation
The CMS information. - allowedChanges
- Type: Atalasoft.PdfDoc.DigitalSignaturesDocumentMDPAllowedChanges
The allowed changes. - isVisible
- Type: SystemBoolean
if set to true the signature is visible. - pageIndex
- Type: SystemInt32
Index of the page which will contain the signature. - bounds
- Type: Atalasoft.PdfDoc.GeometryPdfBounds
The bounds of the signature.
Exceptions Exception | Condition |
---|
ArgumentOutOfRangeException |
pageIndex should be non-negative
or bounds should not be empty if isVisible is true.
|
See Also