Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TPlConvertOptions = int;
const int coContinuePrevious = 1;
const int coNoDefaultChar = 2;
const int coInvalidCharException = 4;
const int coWriteFileHeader = 8;
const int coWriteLineBegin = 16;
const int coWriteLineEnd = 32;
[VB.NET]
TPlConvertOptions As Integer
Const coContinuePrevious As Integer = 1
Const coNoDefaultChar As Integer = 2
Const coInvalidCharException As Integer = 4
Const coWriteFileHeader As Integer = 8
Const coWriteLineBegin As Integer = 16
Const coWriteLineEnd As Integer = 32
[Pascal]
under development
[C++]
typedef uint8_t TPlConvertOptionRaw;
typedef enum { coContinuePrevious = 0, coNoDefaultChar = 1, coInvalidCharException = 2, coWriteFileHeader = 3, coWriteLineBegin = 4, coWriteLineEnd = 5 } TPlConvertOption;
typedef uint32_t TPlConvertOptionsRaw;
typedef enum { f_coContinuePrevious = 1, f_coNoDefaultChar = 2, f_coInvalidCharException = 4, f_coWriteFileHeader = 8, f_coWriteLineBegin = 16, f_coWriteLineEnd = 32 } TPlConvertOptions;
[PHP]
class TPlConvertOptions extends TSBBaseEnum {
const coContinuePrevious = 1;
const coNoDefaultChar = 2;
const coInvalidCharException = 4;
const coWriteFileHeader = 8;
const coWriteLineBegin = 16;
const coWriteLineEnd = 32;
}
Possible values
Declared in
.NET:
- Namespace: SBChSConv
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum