Discuss this help topic in SecureBlackbox Forum

TSBPDFSignatureType

Declared in     See also     


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


Defines possible types of PDF signatures

Declaration

[C#]
    TSBPDFSignatureType = short;
        const short stDocument = 0;
        const short stMDP = 1;
        const short stUsageRights = 2;
        const short stObject = 3;
        const short stUnknown = 4;

[VB.NET]
    TSBPDFSignatureType As Short
        Const stDocument As Short = 0
        Const stMDP As Short = 1
        Const stUsageRights As Short = 2
        Const stObject As Short = 3
        Const stUnknown As Short = 4

[Pascal]
    TSBPDFSignatureType = (stDocument, stMDP, stUsageRights, stObject, stUnknown);

[C++]
    typedef uint8_t TSBPDFSignatureTypeRaw;
    typedef enum { stDocument = 0, stMDP = 1, stUsageRights = 2, stObject = 3, stUnknown = 4 } TSBPDFSignatureType;

[PHP]
    class TSBPDFSignatureType extends TSBBaseEnum {
        const stDocument = 0;
        const stMDP = 1;
        const stUsageRights = 2;
        const stObject = 3;
        const stUnknown = 4;
    }

[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:     SignatureType    

Discuss this help topic in SecureBlackbox Forum