Discuss this help topic in SecureBlackbox Forum

TSBPDFSignatureType

Declared in     See also     


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


Defines possible types of PDF signatures

Declaration

[C#/Java]
    TSBPDFSignatureType = short;
        const int stDocument = 1;
        const int stMDP = 2;
        const int stUsageRights = 3;
        const int stObject = 4;
        const int stUnknown = 255;

[VB.NET]
    TSBPDFSignatureType As SmallInt
        Const stDocument As Integer = 1
        Const stMDP As Integer = 2
        Const stUsageRights As Integer = 3
        Const stObject As Integer = 4
        Const stUnknown As Integer = 255

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

Description

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