DelphiDox-Example
Example_TYPE-Group

Doc for Example_TYPE-Group. More...

Classes

struct  TASCIICtrlChar
 type definiton: Record to describe an ASCII ctrlchar More...
 

Typedefs

typedef WideChar TASCIICtrls
 enumeration of ASCII-ctrlchars More...
 
typedef Set< char,(0),(255)> TASCIICtrlSet
 type definiton: set which can hold all ASCII-ctrlchars More...
 
typedef System::StaticArray< AnsiString, 32 > TASCIINames
 Type definition for an array which holds the names for the ASCII-ctrlchars. More...
 

Enumerations

enum  TASCIIEnum : unsigned char
 Enumeraton of all ASCII-ctrlchars. More...
 

Variables

AnsiString name
 name of the ASCII-ctrlchar
 
char c
 the ASCII-ctrlchar interpreted as AnsiChar More...
 

Detailed Description

Doc for Example_TYPE-Group.


Class Documentation

◆ TASCIICtrlChar

struct TASCIICtrlChar

type definiton: Record to describe an ASCII ctrlchar

Delphi-Declaration
TYPE TASCIICtrlChar = RECORD
c: AnsiChar; // ASCII Ctrl character
name: AnsiString; // name of the Character
END; // TASCIICtrlChar
Class Members
char c the ASCII-ctrlchar interpreted as AnsiChar

Delphi-Declaration
c: AnsiChar; // ASCII Ctrl character
AnsiString name name of the ASCII-ctrlchar

Typedef Documentation

◆ TASCIICtrls

enumeration of ASCII-ctrlchars

Delphi-Declaration
TYPE TASCIICtrls = #$00..#$1F;

◆ TASCIICtrlSet

type definiton: set which can hold all ASCII-ctrlchars

Delphi-Declaration
TYPE TASCIICtrlSet = SET OF TASCIICtrls;

◆ TASCIINames

Type definition for an array which holds the names for the ASCII-ctrlchars.

Delphi-Declaration
TYPE TASCIINames = ARRAY[#$00..#$1F] OF AnsiString;

Enumeration Type Documentation

◆ TASCIIEnum

enum TASCIIEnum : unsigned char

Enumeraton of all ASCII-ctrlchars.

Delphi-Declaration
TYPE TASCIIEnum = (NUL, SOH, STX, ETX,
EOT, ENQ, ACK, BEL,
BS, HT, LF, VT,
FF, CR, SO, SI,
DLE, DC1, DC2, DC3,
DC4, NAK, SYN, ETB,
CAN, EM, SUB, ESC,
FS, GS, RS, US);

Variable Documentation

◆ name

name

name of the ASCII-ctrlchar

◆ c

c

the ASCII-ctrlchar interpreted as AnsiChar

Delphi-Declaration
c: AnsiChar; // ASCII Ctrl character
ESC
ESC
^[: Escape
Definition: Example_CONST.pas:86
BS
BS
^H: Backspace
Definition: Example_CONST.pas:63
DC1
DC1
^Q:
Definition: Example_CONST.pas:74
TASCIICtrlChar::c
char c
the ASCII-ctrlchar interpreted as AnsiChar
Definition: Example_TYPE.hpp:33
FF
FF
^L: Form feed
Definition: Example_CONST.pas:68
TASCIINames
System::StaticArray< AnsiString, 32 > TASCIINames
Type definition for an array which holds the names for the ASCII-ctrlchars.
Definition: Example_TYPE.hpp:38
BEL
BEL
^G: Bell
Definition: Example_CONST.pas:61
SYN
SYN
^V: Synchronous idle
Definition: Example_CONST.pas:80
ENQ
ENQ
^E: Enquiry
Definition: Example_CONST.pas:59
NAK
NAK
^U: Negative acknowledge
Definition: Example_CONST.pas:79
LF
LF
^J: Line feed
Definition: Example_CONST.pas:65
STX
STX
^B: Start of Text
Definition: Example_CONST.pas:55
GS
GS
^]: Group separator
Definition: Example_CONST.pas:89
FS
FS
^\: File separator
Definition: Example_CONST.pas:88
NUL
NUL
^@:
Definition: Example_CONST.pas:53
RS
RS
^^: Record separator
Definition: Example_CONST.pas:90
VT
VT
^K: Vertical Tab
Definition: Example_CONST.pas:66
SOH
SOH
^A: Start of Header
Definition: Example_CONST.pas:54
EOT
EOT
^D: End of transmission
Definition: Example_CONST.pas:58
ETX
ETX
^C: End of Text
Definition: Example_CONST.pas:56
US
US
^_: Unit separator
Definition: Example_CONST.pas:91
TASCIIEnum
TASCIIEnum
Enumeraton of all ASCII-ctrlchars.
Definition: Example_TYPE.hpp:40
ACK
ACK
^F: Acknowledge
Definition: Example_CONST.pas:60
DC3
DC3
^S:
Definition: Example_CONST.pas:76
TASCIICtrlChar::name
AnsiString name
name of the ASCII-ctrlchar
Definition: Example_TYPE.hpp:34
DC2
DC2
^R:
Definition: Example_CONST.pas:75
DLE
DLE
^P: Data link esacpe
Definition: Example_CONST.pas:73
TASCIICtrls
WideChar TASCIICtrls
enumeration of ASCII-ctrlchars
Definition: Example_TYPE.hpp:24
SI
SI
^O: Shift in
Definition: Example_CONST.pas:71
TASCIICtrlSet
Set< char,(0),(255)> TASCIICtrlSet
type definiton: set which can hold all ASCII-ctrlchars
Definition: Example_TYPE.hpp:28
DC4
DC4
^T:
Definition: Example_CONST.pas:78
CAN
CAN
^X: Cancel
Definition: Example_CONST.pas:83
SO
SO
^N: Shift out
Definition: Example_CONST.pas:70
SUB
SUB
^Z: Substitute
Definition: Example_CONST.pas:85
TASCIICtrlChar
type definiton: Record to describe an ASCII ctrlchar
Definition: Example_TYPE.hpp:31