TStrings.InsertObject
Insert a string and associated object in the list.
Declaration
Source position: classesh.inc line 741
public 
  procedure InsertObject(Index: Integer; const S: string; 
                        AObject: TObject);
Description
InsertObject inserts the string S and its associated objectAObject at position Index in the list. Index is a zero-based position, and can have values from 0 to Count. If Index equals Count then the string is appended to the list.
Errors
If Index is less than zero or larger than Count then an EStringListError exception is raised.
See also
| Name | Description | 
|---|---|
| TStrings.AddObject | Add a string and associated object to the list. | 
| TStrings.Append | Add a string to the list. | 
| TStrings.Delete | Delete a string from the list. | 
| TStrings.Insert | Insert a string in the list. |