Discuss this help topic in SecureBlackbox Forum
Defines changes to PDF document which can be allowed/disallowed by the signature.
Declaration
[C#/Java]
TSBPDFSignatureAllowedChange = short;
const short sacFillInForms = 1;
const short sacComment = 2;
[VB.NET]
TSBPDFSignatureAllowedChange As SmallInt
Const sacFillInForms As SmallInt = 1
Const sacComment As SmallInt = 2
[Pascal]
TSBPDFSignatureAllowedChange = (sacFillInForms, sacComment);
[C++]
typedef uint8_t TSBPDFSignatureAllowedChangeRaw;
typedef enum { sacFillInForms = 0, sacComment = 1 } TSBPDFSignatureAllowedChange;
typedef uint32_t TSBPDFSignatureAllowedChangesRaw;
typedef enum { f_sacFillInForms = 1, f_sacComment = 2 } TSBPDFSignatureAllowedChanges;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPDF
- Assembly: SecureBlackbox.PDF
VCL:Java:
- Package: SecureBlackbox.PDF.jar
C++:
Discuss this help topic in SecureBlackbox Forum