TIniSection
An ini section.
Methods
Method GetName:String()
Returns the name of the section, or Null if it is the global section.
Method SetName(name:String)
Sets the name of the section.
Method CountProperties:Int()
Returns the number of properties in the section.
Method GetProperty:TIniProperty(index:Int)
Returns a property at the given index position, or Null if the index is out of range.
Method FindProperty:TIniProperty(name:String)
Finds the property with the given name, or Null if not found.
Method AddProperty:TIniProperty(name:String, value:String)
Adds a new property to the section using the specified name and value
Method RemoveProperty(index:Int)
Removes the property with the given index from the section.