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

TdxTileControlActionBarVisibilityChangeReason Enum

Enumerates the actions that switch the visibility of action bars.

#Declaration

Delphi
TdxTileControlActionBarVisibilityChangeReason = (
    abvcrManualSwitch,
    abvcrActionButtonClick,
    abvcrActiveDetailChange,
    abvcrMouseLeftClick,
    abvcrMouseMiddleClick,
    abvcrMouseRightClick,
    abvcrTileElementInteraction,
    abvcrTileItemCheckedStateChange
);

#Members

Name
abvcrManualSwitch
abvcrActionButtonClick
abvcrActiveDetailChange
abvcrMouseLeftClick
abvcrMouseMiddleClick
abvcrMouseRightClick
abvcrTileElementInteraction
abvcrTileItemCheckedStateChange

#Remarks

Values include:

Value Description
abvcrManualSwitch A tile control’s HideActionBars or ShowActionBars method is called.
abvcrActionButtonClick An action button is clicked.
abvcrActiveDetailChange The currently active detail page is changed. Refer to a tile item’s ActivateDetail method description to learn how detail pages can be activated.
abvcrMouseLeftClick The left mouse button is clicked.
abvcrMouseMiddleClick The middle mouse button is clicked.
abvcrMouseRightClick The right mouse button is clicked.
abvcrTileElementInteraction An end-user started interacting with tile control elements using drag and drop.
abvcrTileItemCheckedStateChange A tile item’s checked state is changed.
See Also