INI¶
Include: Use System\Ini.pkg
INI APIs parse, edit, stringify, and write INI data. cIniProcessor works with in-memory data; cIniFile provides direct file compatibility calls.
Types¶
- INI types - Structs used by parsed INI data.
Classes¶
- cIniProcessor - Parse, edit, stringify, read, and write INI data.
- cIniFile - Direct section/key file calls.
Example¶
Handle hoIni
String sTheme
Get Create (RefClass(cIniProcessor)) to hoIni
Send SetValue of hoIni "ui" "theme" "dark"
Get GetValue of hoIni "ui" "theme" "light" to sTheme
Send Destroy of hoIni