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

TdxAutoHidePosition Enum

Contains values specifying the edges of dock sites where dock controls can be hidden when their auto hide feature is enabled.

#Declaration

Delphi
TdxAutoHidePosition = (
    ahpLeft,
    ahpTop,
    ahpRight,
    ahpBottom,
    ahpUndefined
);

#Members

Name
ahpLeft
ahpTop
ahpRight
ahpBottom
ahpUndefined

#Remarks

Values listed in the TdxAutoHidePosition type are passed to the OnGetAutoHidePosition event of dock controls. They specify the automatically determined edge of the dock site to which a control is hidden when the auto hide feature is enabled. However, you can specify a different value to force the control to be hidden to different edge of the dock site.

The following values are available in the TdxAutoHidePosition enumerator.

Value Description
ahpLeft The dock control is hidden to the left edge of the dock site.
ahpTop The dock control is hidden to the top edge of the dock site.
ahpRight The dock control is hidden to the right edge of the dock site.
ahpBottom The dock control is hidden to the bottom edge of the dock site.
See Also