Vcl.ComCtrls.TListView.OnEditing

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnEditing: TLVEditingEvent read FOnEditing write FOnEditing;

C++

__property OnEditing;

Properties

Type Visibility Source Unit Parent
event published
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TListView

Description

Occurs when the user starts to edit a list item's Caption property.

Vcl.ComCtrls.TListView.OnEditing inherits from Vcl.ComCtrls.TCustomListView.OnEditing. All content below this line refers to Vcl.ComCtrls.TCustomListView.OnEditing.

Occurs when the user starts to edit a list item's Caption property.

Write an OnEditing event handler to take specific action just before a user edits a list item's Caption property.

This event can occur only if the ReadOnly property is set to False.

OnEditing is an event handler of type Vcl.ComCtrls.TLVEditingEvent.

See Also