DelphiDox-Example
Example_VAR-Group

Doc for Example_VAR-Group. More...

Variables

TASCIICtrlSet ASCIICtrls
 
TASCIINames ASCIINames
 Tabelle mit den Ascii-Namen. More...
 
Example_var__1 ASCII_Enum
 Enumeration of all ASCII-ctrlchars. More...
 
TASCIIEnum ASCIIEnum
 Enumeration of all ASCII-ctrlchars. More...
 

grouped Variables

Some examples for variable declarations, gathered in a group

int IntVar
 simple variable More...
 
TASCIICtrlChar ASCIICtrlChar
 Variable of type TASCIICtrlChar. More...
 

Detailed Description

Doc for Example_VAR-Group.

Relates to Delphi VARs and typed CONSTs; for plain Delphi CONSTs refer to Example_CONST-Group.

Variable Documentation

◆ ASCIICtrls

ASCIICtrls

Delphi-Declaration

variable: set containing ASCII-ctrlchars

◆ ASCIINames

ASCIINames

Tabelle mit den Ascii-Namen.

Delphi-Declaration
= ('NUL',
'SOH', // ^A
'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');

C++Builder Declaration
extern DELPHI_PACKAGE TASCIINames ASCIINames;

◆ ASCII_Enum

ASCII_Enum

Enumeration of all ASCII-ctrlchars.

Delphi-Declaration
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);

◆ ASCIIEnum

ASCIIEnum

Enumeration of all ASCII-ctrlchars.

Delphi-Declaration

◆ IntVar

IntVar

simple variable

Delphi-Declaration
IntVar: INTEGER; // integer variable

◆ ASCIICtrlChar

ASCIICtrlChar

Variable of type TASCIICtrlChar.

Delphi-Declaration
ASCIICtrlChar: TASCIICtrlChar; // ascii ctrlchar variable
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
IntVar
int IntVar
simple variable
Definition: Example_VAR.hpp:42
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
ASCII_Enum
Example_var__1 ASCII_Enum
Enumeration of all ASCII-ctrlchars.
Definition: Example_VAR.hpp:39
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
DC2
DC2
^R:
Definition: Example_CONST.pas:75
DLE
DLE
^P: Data link esacpe
Definition: Example_CONST.pas:73
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
ASCIICtrlChar
TASCIICtrlChar ASCIICtrlChar
Variable of type TASCIICtrlChar.
Definition: Example_VAR.hpp:43
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
ASCIICtrls
TASCIICtrlSet ASCIICtrls
Definition: Example_VAR.hpp:37
SUB
SUB
^Z: Substitute
Definition: Example_CONST.pas:85
ASCIIEnum
TASCIIEnum ASCIIEnum
Enumeration of all ASCII-ctrlchars.
Definition: Example_VAR.hpp:40
ASCIINames
TASCIINames ASCIINames
Tabelle mit den Ascii-Namen.
Definition: Example_VAR.hpp:38
TASCIICtrlChar
type definiton: Record to describe an ASCII ctrlchar
Definition: Example_TYPE.hpp:31