Vcl.ComCtrls.TCustomListView.OnEditing

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnEditing: TLVEditingEvent read FOnEditing write FOnEditing;

C++

__property TLVEditingEvent OnEditing = {read=FOnEditing, write=FOnEditing};

Properties

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

Description

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