Discuss this help topic in SecureBlackbox Forum
Defines possible decryption modes of PDF documents.
Declaration
[C#/Java]
TSBPDFDecryptionMode = short;
const int dmFull = 0;
const int dmOnDemand = 1;
const int dmSign = 2;
[VB.NET]
TSBPDFDecryptionMode As SmallInt
Const dmFull As Integer = 0
Const dmOnDemand As Integer = 1
Const dmSign As Integer = 2
[Pascal]
TSBPDFDecryptionMode = (dmFull, dmOnDemand, dmSign);
[C++]
typedef uint8_t TSBPDFDecryptionModeRaw;
typedef enum { dmFull = 0, dmOnDemand = 1, dmSign = 2 } TSBPDFDecryptionMode;
Description
Possible values:
Declared in
.NET:
- Namespace: SBPDF
- Assembly: SecureBlackbox.PDF
VCL:Java:
- Package: SecureBlackbox.PDF.jar
C++:
Discuss this help topic in SecureBlackbox Forum