INI_GetIntegerValue
Gets value from section & key.
Syntax
C++
Python
def INI_GetIntegerValue( inINI: str, inSection: str, inKey: str, /, *, inDefault: int = 0 ) -> outValue: int
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inINI | str | INI | |
![]() |
inSection | str | Section name | |
![]() |
inKey | str | Key name | |
![]() |
inDefault | int | 0 | Value to return if the key is not found |
![]() |
outValue | int |


