TIniProperty
An ini property, with a name and value.
An individual key-value pair, commonly referred to as a "property", within an INI file. Each property comprises a distinct key and its associated value, serving as the basic data element in the INI file structure.
Methods
Method GetName:String()
Returns the name of the property.
Method GetIndex:Int()
Returns the index of the property.
Method SetName(name:String)
Sets the name the property.
Names should not contain the = character, as it is used to separate the name from the value.
Method GetValue:String()
Returns the value for the property, or Null if it is not set.
Method SetValue(value:String)
Sets the value for the property.
Method Remove()
Removes the property from its section.
On removal, the property is freed and this instance should no longer be used.
