TdxTileControlItem.OnClick Event
Enables you to respond to the current tile item’s activation.
Declaration
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