Vcl.ComCtrls.TCustomTreeView.DestroyWnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DestroyWnd; override;

C++

virtual void __fastcall DestroyWnd();

Properties

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

Description

Destroys the control's window.

DestroyWnd is called when the tree view needs to replace its window. For example, changing properties that are implemented by window parameter settings require the tree view to be destroyed and then recreated using the CreateWnd method.

Before the window is destroyed, DestroyWnd saves information about the tree view's items in memory, frees any device contexts, and finally calls DestroyWindowHandle. When the window is recreated, the stored items are added to the new window.

See Also