Discuss this help topic in SecureBlackbox Forum
Defines possible actions to be taken over a PDF fields selection.
Declaration
[C#]
TSBPDFFieldMDPAction = short;
const short fmaAll = 0;
const short fmaInclude = 1;
const short fmaExclude = 2;
const short fmaUnknown = 3;
[VB.NET]
TSBPDFFieldMDPAction As Short
Const fmaAll As Short = 0
Const fmaInclude As Short = 1
Const fmaExclude As Short = 2
Const fmaUnknown As Short = 3
[Pascal]
TSBPDFFieldMDPAction = (fmaAll, fmaInclude, fmaExclude, fmaUnknown);
[C++]
typedef uint8_t TSBPDFFieldMDPActionRaw;
typedef enum { fmaAll = 0, fmaInclude = 1, fmaExclude = 2, fmaUnknown = 3 } TSBPDFFieldMDPAction;
[PHP]
class TSBPDFFieldMDPAction extends TSBBaseEnum {
const fmaAll = 0;
const fmaInclude = 1;
const fmaExclude = 2;
const fmaUnknown = 3;
}
Possible values:
Declared in
.NET:
- Namespace: SBPDF
- Assembly: SecureBlackbox.PDF
VCL:Java:
- Package: SecureBlackbox.PDF.jar
C++:
Discuss this help topic in SecureBlackbox Forum