Vcl.ComCtrls.TCustomListView.Change

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Change(Item: TListItem; Change: Integer); dynamic;

C++

DYNAMIC void __fastcall Change(TListItem* Item, int Change);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomListView

Description

Generates an OnChange event.

Change is called automatically after the properties of the item specified by the Item parameter change. The Change parameter is a Windows-defined constant that specifies the type of change that occurred.

Override Change to perform other actions when the list items change or to block the OnChange event.

See Also