What locale to use in string operations.
Source position: sysstrh.inc line 24
type TLocaleOptions = ( |
||
loInvariantLocale, |
|
Use system locale. |
loUserLocale |
|
Use user locale. |
); |
TLocaleOptions is used to indicate what locale should be used for some string operations such as UpperCase, LowerCase, CompareText, SameText. The following values are possible:
For consistent behaviour independent of the user or service applications use loInvariantLocale.
|
Return an uppercase version of a string. |
|
|
Return a lowercase version of a string. |
|
|
Compare 2 ansistrings case insensitive. |
|
|
Checks whether 2 strings are the same (case insensitive). |