Vcl.VirtualImageList.TVirtualImageList.Delete

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Delete(AIndex: Integer); overload;
procedure Delete(const AName: String); overload;
procedure Delete(const ACategory: String; AStartIndex, AEndIndex: Integer); overload;

C++

HIDESBASE void __fastcall Delete(int AIndex)/* overload */;
HIDESBASE void __fastcall Delete(const System::UnicodeString AName)/* overload */;
HIDESBASE void __fastcall Delete(const System::UnicodeString ACategory, int AStartIndex, int AEndIndex)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
Vcl.VirtualImageList.pas
Vcl.VirtualImageList.hpp
Vcl.VirtualImageList TVirtualImageList

Description

Deletes a particular image from the image list.

Use the Delete method to delete an image specified by Index in the image list. Use the Clear method to delete all images in the image list.

See Also