INI_GetBoolValue
Gets value from section & key.
Syntax
C++
Python
def INI_GetBoolValue( inINI: str, inSection: str, inKey: str, /, *, inDefault: bool = False ) -> outValue: bool
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inINI | str | INI | |
![]() |
inSection | str | Section name | |
![]() |
inKey | str | Key name | |
![]() |
inDefault | bool | False | Value to return if the key is not found |
![]() |
outValue | bool |


