Vcl.ComCtrls.TCustomTreeView.OnChanging

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnChanging: TTVChangingEvent read FOnChanging write FOnChanging;

C++

__property TTVChangingEvent OnChanging = {read=FOnChanging, write=FOnChanging};

Properties

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

Description

Occurs when the selection is about to change from one node to another.

Write an OnChanging event handler to selectively prevent selection from moving to specific nodes.

The TTVChangingEvent type points to a method that is called when the selection is about to be changed from one node to another.

OnChanging is an event handler of type Vcl.ComCtrls.TTVChangingEvent.

See Also