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

TdxTileControlItem.OnClick Event

In This Article

Enables you to respond to the current tile item’s activation.

#Declaration

Delphi
property OnClick: TdxTileControlItemEvent read; write;

#Remarks

End-users can activate tile items with clicks and taps. The Click method allows you to activate tile items programmatically, emulating an end-user action. Activating a tile item fires its OnClick event. If you set up this tile item to display a detail page, the OnActivateDetail event will fire after the OnClick event.

At design time, you can double-click a tile item to add an empty implementation of its OnClick event handler into the code.

Note

The OnClick event does not fire for disabled tile items.

See Also