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 | |
|---|---|---|---|---|
![]() |
inINI | str | INI | |
![]() |
inSection | str | Section name | |
![]() |
inKey | str | Key name | |
![]() |
inDefault | str | "" | Value to return if the key is not found |
![]() |
outValue | str |


