Discuss this help topic in SecureBlackbox Forum

TSBPDFSignatureAllowedChanges

Declared in     See also     


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


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

[Pascal]
    set of TSBPDFSignatureAllowedChange;

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

[Java]
    not available

Possible values

Declared in

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

See also:     TSBPDFSignatureAllowedChange    

Discuss this help topic in SecureBlackbox Forum