Used as letters case option in conversion to strings.
Source position: syshelpers.pp line 44
type TStringCaseFormat = ( |
||
scfUnchangedCase, |
|
Option to leave case as it is in result string during conversion. |
scfLowerCase, |
|
Option to convert result string to lower case, dependent on OS and locale settings for non-ascii strings. |
scfUpperCase |
|
Option to convert result string to upper case, dependent on OS and locale settings for non-ascii strings. |
); |
TStringCaseFormat determines the casing of the various conversion to string helpers such as TBooleanSysHelper.ToString. Note that this makes use of functions whose result is dependent on the OS and the locale settings.
|
Boolean type helper for customizable boolean string representation. |