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

TdxTileControlGroupDragEndEvent Type

The procedural type of the tile group drop notification event.

#Declaration

Delphi
TdxTileControlGroupDragEndEvent = procedure(Sender: TdxCustomTileControl; AInfo: TdxTileControlDragGroupInfo) of object;

#Parameters

Name Type
Sender TdxCustomTileControl
AInfo TdxTileControlDragGroupInfo

#Remarks

The Sender parameter provides access to the Tile or Tile Bar control that raised the group drag initiation event. To access the control’s all class-specific members within a TdxTileControlGroupDragBeginEvent event handler, cast the parameter value to the TdxTileControl or TdxTileBar class. Call the Sender.ClassName or Sender.ClassType function to identify the actual control’s type.

The AInfo parameter provides access to the information on the moved tile group, including its initial (the AInfo.BeginIndex property) and final (the AInfo.CurrentIndex property) positions within the Sender control. Refer to the TdxTileControlDragGroupInfo class description for details.

The control’s OnGroupDragEnd event references the TdxTileControlGroupDragEndEvent procedural type.

See Also