API:System.WideStrings.TWideStringList.Delete

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Delete(Index: Integer); override;

C++

virtual void __fastcall Delete(int Index);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.WideStrings.pas
System.WideStrings.hpp
System.WideStrings TWideStringList

Description

Introduces an abstract (Delphi) or pure virtual (C++) method to delete a specified Unicode string from the list.

System.WideStrings.TWideStringList.Delete inherits from System.WideStrings.TWideStrings.Delete. All content below this line refers to System.WideStrings.TWideStrings.Delete.

Introduces an abstract (Delphi) or pure virtual (C++) method to delete a specified Unicode string from the list.

Descendants of TWideStrings implement a Delete method to remove a specified string from the list. If an object is associated with the string, the reference to the object is removed as well. Index gives the position of the string, where 0 is the first string, 1 is the second string, and so on.

See Also