Skip to content

INI types

Include: Use System\Ini.pkg

INI structs represent parsed sections, keys, values, and comment lines.

tIniValue

Field Type Description
sName String Key name.
sCaseName String Case-preserved key name.
sValue String Key value text.
bComment Boolean True when the row represents a comment.

tIniSection

Field Type Description
sName String Section name.
sCaseName String Case-preserved section name.
aValues tIniValue[] Values and comments in the section.

Example

tIniSection section
Move "settings" to section.sName

See also