Vcl.ComCtrls.TComboBoxExStrings.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
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TComboBoxExStrings

Description

Removes the item specified by the Index parameter.

Vcl.ComCtrls.TComboBoxExStrings.Delete inherits from Vcl.StdCtrls.TCustomComboBoxStrings.Delete. All content below this line refers to Vcl.StdCtrls.TCustomComboBoxStrings.Delete.

Removes the item specified by the Index parameter.

Call Delete to remove a single item 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 in the drop-down list, where 0 is the first string, 1 is the second string, and so on.

See Also