INI_GetStringValue


Gets value from section & key.

Syntax

C++
Python
 
def INI_GetStringValue(
	inINI: str,
	inSection: str,
	inKey: str,
	/,
	*,
	inDefault: str = ""
)
-> outValue: str

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