Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
TPlCharType = short;
const short ctOther = 0;
const short ctLetterUpper = 1;
const short ctLetterLower = 2;
const short ctLetterTitle = 3;
const short ctLetterOther = 4;
const short ctNumber = 5;
const short ctPunctuation = 6;
const short ctSpace = 7;
const short ctControl = 8;
const short ctMark = 9;
[VB.NET]
TPlCharType As Short
Const ctOther As Short = 0
Const ctLetterUpper As Short = 1
Const ctLetterLower As Short = 2
Const ctLetterTitle As Short = 3
Const ctLetterOther As Short = 4
Const ctNumber As Short = 5
Const ctPunctuation As Short = 6
Const ctSpace As Short = 7
Const ctControl As Short = 8
Const ctMark As Short = 9
[Pascal]
under development
[C++]
typedef uint8_t TPlCharTypeRaw;
typedef enum { ctOther = 0, ctLetterUpper = 1, ctLetterLower = 2, ctLetterTitle = 3, ctLetterOther = 4, ctNumber = 5, ctPunctuation = 6, ctSpace = 7, ctControl = 8, ctMark = 9 } TPlCharType;
[PHP]
class TPlCharType extends TSBBaseEnum {
const ctOther = 0;
const ctLetterUpper = 1;
const ctLetterLower = 2;
const ctLetterTitle = 3;
const ctLetterOther = 4;
const ctNumber = 5;
const ctPunctuation = 6;
const ctSpace = 7;
const ctControl = 8;
const ctMark = 9;
}
Possible values
Declared in
.NET:
- Namespace: SBChSUnicode
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum