Discuss this help topic in SecureBlackbox Forum
Defines a set of changes to PDF document which can be allowed/disallowed by the signature.
Declaration
[C#]
TSBPDFSignatureAllowedChanges = int;
const int sacFillInForms = 1;
const int sacComment = 2;
[VB.NET]
TSBPDFSignatureAllowedChanges As Integer
Const sacFillInForms As Integer = 1
Const sacComment As Integer = 2
[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;
[PHP]
class TSBPDFSignatureAllowedChanges extends TSBBaseEnum {
const sacFillInForms = 1;
const sacComment = 2;
}
Possible values
Declared in
.NET:
- Namespace: SBPDF
- Assembly: SecureBlackbox.PDF
VCL:Java:
- Package: SecureBlackbox.PDF.jar
C++:
Discuss this help topic in SecureBlackbox Forum