Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxDockSite.ShowingControl Property

Enables you to show and hide those controls with the auto hide feature enabled.

#Declaration

Delphi
property ShowingControl: TdxCustomDockControl read; write;

#Property Value

Type
TdxCustomDockControl

#Remarks

You can enable the auto hide feature for a control by setting its AutoHide property to True. In this case, the control will be automatically hidden unless it is active or the mouse pointer is over it. A label referencing the control will be displayed at the dock site’s edge. Pointing to this label with the mouse makes the control visible.

You can also change such control visibility via code. The ShowingControl property is used for this purpose. Assign a dock control to this property to make it visible. The control previously shown is hidden in this case. If you need to hide all auto hide enabled dock controls, set the ShowingControl property to nil.

If the dock control’s auto hide feature is not enabled, assigning this control to the ShowingControl property has no effect.

See Also