TdxTileControlGroupDragEndEvent Type
The procedural type of the tile group drop notification event.
Declaration
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.