CRegistry:GetBool
The GetBool method returns a Boolean (true or false) value form a registry key. The method also specifies a default value to be returned if the named value or key does not already exist in the Registry.
bValue = CRegistry:GetBool( sName, bDefault ) bValue is a Boolean (logical) true or false value. sName is the name of the value to fetch. bDefault is the default value (true or false) returned if sName is not found in the Registry. |
The following script opens a key specified by sKeyName and returns a Boolean value saved under the name "MyVal":
|
-- open the key and create a CRegistry object |
|
-- fetch the value of "MyVal", default to true |
|
-- Result: MyVal= 1 (0 or 1 if using %d format) |
Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics,
Inc. All Rights Reserved.