INI_GetRealValue


Gets value from section & key.

Syntax

C++
Python
 
def INI_GetRealValue(
	inINI: str,
	inSection: str,
	inKey: str,
	/,
	*,
	inDefault: float = 0
)
-> outValue: float

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 float 0 Value to return if the key is not found
Output value outValue float