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
Input value inINI str INI
Input value inSection str Section name
Input value inKey str Key name
Input value inDefault bool False Value to return if the key is not found
Output value outValue bool