Discuss this help topic in SecureBlackbox Forum
Defines possible attributes of fields in a PDF document.
Declaration
[C#/Java]
TSBPDFFieldFlag = int;
const int ffReadOnly = 1;
const int ffRequired = 2;
const int ffNoExport = 4;
[VB.NET]
TSBPDFFieldFlag As Integer
Const ffReadOnly As Integer = 1
Const ffRequired As Integer = 2
Const ffNoExport As Integer = 4
[Pascal]
TSBPDFFieldFlag = (ffReadOnly, ffRequired, ffNoExport);
[C++]
typedef uint8_t TSBPDFFieldFlagRaw;
typedef enum
{
ffReadOnly = 0,
ffRequired = 1,
ffNoExport = 2
} TSBPDFFieldFlag;
typedef uint32_t TSBPDFFieldFlagsRaw;
typedef enum
{
f_ffReadOnly = 1,
f_ffRequired = 2,
f_ffNoExport = 4
} TSBPDFFieldFlags;
Possible values:
Declared in
.NET:
- Namespace: SBPDF
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.PDF.jar
C++:
Discuss this help topic in SecureBlackbox Forum