INI_AddIntegerValue
Adds or updates an INI value in the specified section & key.
Syntax
C++
Python
def INI_AddIntegerValue( inINI: str, inSection: str, inKey: str, inValue: int, /, *, inComment: str | None = None, inMultipleValues: bool = False ) -> outINI: str
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inINI | str | INI | |
![]() |
inSection | str | Section name | |
![]() |
inKey | str | Key name | |
![]() |
inValue | int | Key value | |
![]() |
inComment | str | None | None | Optional comment |
![]() |
inMultipleValues | bool | False | Allow multiple values in one key |
![]() |
outINI | str |


