Discuss this help topic in SecureBlackbox Forum

TSBPDFSignatureAllowedChange

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


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;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBPDF
  • Assembly: SecureBlackbox.PDF
VCL:
  • Unit: SBPDF
Java:
  • Package: SecureBlackbox.PDF.jar
C++:
  • sbpdf.h

Discuss this help topic in SecureBlackbox Forum