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