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

TdxCustomTileControl.OnItemDeactivateDetail Event

In This Article

Enables you to respond to closing the detail page associated with a specified tile item.

#Declaration

Delphi
property OnItemDeactivateDetail: TdxTileControlItemOperationEvent read; write;

#Remarks

The Sender parameter references the tile control.

The AItem parameter specifies the tile item whose detail page has been closed.

This event fires before the tile item’s OnDeactivateDetail event. Handle these events in combination with the tile control’s OnItemActivateDetail and OnItemDeactivatingDetail events and the OnClick, OnActivateDetail, and OnDeactivatingDetail events of individual tile items in order to respond to activating tiles and switching between detail pages. Refer to the tile item ActivateDetail and Click method descriptions to learn about the available methods to show detail pages for tile items.

Note that the currently active detail page is automatically closed when the tile control is about to be destroyed. As a result, the OnItemDeactivateDetail and OnDeactivateDetail events are fired in this instance as well.

See Also