INI_AddRealValue


Adds or updates an INI value in the specified section & key.s

Syntax

C++
Python
 
def INI_AddRealValue(
	inINI: str,
	inSection: str,
	inKey: str,
	inValue: float,
	/,
	*,
	inComment: str | None = None,
	inMultipleValues: bool = False
)
-> outINI: 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 inValue float Key value
Input value inComment str | None None Optional comment
Input value inMultipleValues bool False Allow multiple values in one key
Output value outINI str