| constructor TStringList.Create; | Creates a TStringList class object | 
| function TStringList.Add(const S: string): Integer | Adds a string to the list | 
| procedure TStringList.Clear | Clears the list | 
| procedure TStringList.Delete(Index: Integer) | Deletes the string with the given index from the list | 
| function TStringList.IndexOf(const S: string): Integer | Returns the index of the given string. | 
| function TStringList.IndexOfName(const Name: string): Integer | Returns the index of the string with a given name. | 
| procedure TStringList.Insert(Index: Integer; const S: string) | Inserts the given string into the given position. | 
| procedure TStringList.LoadFromFile(const FileName: string) | Loads the values from a file into the String list. | 
| procedure TStringList.SaveToFile(const FileName: string) | Saves the String list into the file. | 
| destructor Free; | Deletes a TStringList class object |