Discuss this help topic in SecureBlackbox Forum
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;
}
Possible values
Declared in
.NET:
- Namespace: SBPDF
- Assembly: SecureBlackbox.PDF
VCL:Java:
- Package: SecureBlackbox.PDF.jar
C++:
Discuss this help topic in SecureBlackbox Forum