Discuss this help topic in SecureBlackbox Forum

TSBPDFFieldMDPAction

Declared in     


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


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;

[Java]
    not available

[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:
  • Unit: SBPDF
Java:
  • Package: SecureBlackbox.PDF.jar
C++:
  • sbpdf.h

Discuss this help topic in SecureBlackbox Forum