TStrings.Delete
Delete a string from the list.
Declaration
Source position: classesh.inc line 721
public
procedure Delete(Index: Integer); Virtual; Abstract;
Description
Delete deletes the string at position Index from the list. The associated object is also removed from the list, but not destroyed. Index is zero-based, and should be in the range 0 to Count-1.
Since it is an abstract method, TStrings itself does not implement Delete. Descendant classes such as TStringList implement this method.
Errors
If Index is not in the allowed range, an EStringListError is raised.
See also
Name | Description |
---|---|
TStrings.Clear | Removes all strings and associated objects from the list. |
TStrings.Insert | Insert a string in the list. |
TStrings.Objects | Indexed access to the objects associated with the strings in the list. |
TStrings.Strings | Indexed access to the strings in the list. |