<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > AppConfig > cAppConfig Class > <cAppConfig> Properties > <cAppConfig>.CaseSensitive |
Description
By default cAppConfig stores internal keys in case sensitive mode so "AKeyName" key is different from "akeyname" key
This property can be used to change this behave allowing case insensitive keys usage
Syntax
Syntax
GET
n = <cAppConfig>.CaseSensitive
SET
<cAppConfig>.CaseSensitive = n
Returns
Number
Parameters
Name |
Type |
Optional |
Meaning |
n |
Number |
Yes |
%TRUE or %FALSE |
Remarks
In many circumstances it can be convenient not to have case sensitive key and simplify keys handling
Restrictions
Change sensitivity before calling Load or LoadString methods otherwise case sensitivity will not have any effect.
See also
Examples