Vcl.ComCtrls.TTVEditedEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TTVEditedEvent = procedure(Sender: TObject; Node: TTreeNode; var S: string) of object;

C++

typedef void __fastcall (__closure *TTVEditedEvent)(System::TObject* Sender, TTreeNode* Node, System::UnicodeString &S);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls Vcl.ComCtrls

Description

Used in the TCustomTreeView.OnEdited event.

This event is used in the TCustomTreeView.OnEdited event after the user edits the Text property of a node.

Sender is the tree-view control in which a node's label was edited.

Node is the item whose label was edited.

The S parameter is the new value of the node’s Text property.

See Also