Record type holding strings for boolean to string conversion.
Source position: syshelpers.pp line 46
| type TBitFormatSettings = record | ||
| public | ||
| BitTrueString: string; | 
 | String used for boolean TRUE value. | 
| BitFalseString: string; | 
 | String used for boolean FALSE value. | 
| BitOnString: string; | 
 | String used for boolean ON value. | 
| BitOffString: string; | 
 | String used for boolean OFF value. | 
| BitOneString: string; | 
 | String used for boolean ONE value. | 
| BitZeroString: string; | 
 | String used for boolean ZERO value. | 
| class operator initialize(TBitFormatSettings)(); | 
 | Populate record with default values. | 
| procedure CopyToDefaultBoolStrings; | 
 | Changes default boolean to string text outputs in sysutils. | 
| procedure CopyToDefaultBitFormatSettings; | 
 | Changes default boolean to string text outputs in syshelpers. | 
| 
 | ||
| end; | 
| 
 | Record type holding strings used for ordinal to binary string conversion. | |
| 
 | Record type holding strings used for ordinal to hexadecimal string conversion. | |
| 
 | Global boolean to string conversion defaults. |