Controls.TControl.FloatingDockSiteClass
Contents |
Delphi Information
From Controls.pas
property FloatingDockSiteClass: TWinControlClass read GetFloatingDockSiteClass write FFloatingDockSiteClass;
Unit: Controls
Type: property
Visibility: public
Member Of: TControl
C++ Information
From Controls.hpp
__property System::TMetaClass * FloatingDockSiteClass = {read=GetFloatingDockSiteClass,write=FFloatingDockSiteClass};
Unit: Controls
Type: property
Visibility: public
Member Of: TControl
Description
Specifies the class of the temporary control that hosts the control when it is floating.
Use FloatingDockSiteClass to specify the class that houses the control when it is floating. This class must be a descendant of TWinControl. By default, it is TCustomDockForm. When the control is undocked, a temporary control of this type is created and the control is docked to that control. When the control is docked to another control, the temporary floating dock site is freed.
If the control can float as a stand-alone window, FloatingDockSiteClass is nil (Delphi) or NULL (C++).