Vcl.ComCtrls.TCustomTreeView.Edit

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Edit(const Item: TTVItem); dynamic;

C++

DYNAMIC void __fastcall Edit(const tagTVITEMW &Item);

Properties

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

Description

Edit event dispatcher.

Edit is called automatically when the user edits the text of a tree view node. The Item parameter is the data structure supplied by the Windows control that identifies the node that was edited and the new value of its text. Edit unpacks this information into the parameters of an OnEdited event handler, and allows the event handler to change the value of the node's text.

See Also