ClassReorderEndedEventArgs
Provides data for the ReorderEnded event.
Definition
Namespace:Telerik.Maui.Controls.Compatibility.DataControls.ListView
Assembly:Telerik.Maui.Controls.Compatibility.dll
Syntax:
public class ReorderEndedEventArgs : EventArgs
Inheritance: objectEventArgsReorderEndedEventArgs
Inherited Members
Constructors
ReorderEndedEventArgs(object, IDataGroup, object, IDataGroup, ItemReorderPlacement)
Initializes a new instance of the ReorderEndedEventArgs class.
Declaration
public ReorderEndedEventArgs(object item, IDataGroup group, object destinationItem, IDataGroup destinationGroup, ItemReorderPlacement placement)
Parameters
item
The data item that is being interacted with.
group
The data group containing the data item that is being interacted with.
destinationItem
The data item that corresponds to the location where the dragged item has been released.
destinationGroup
The data group that corresponds to the location where the dragged item has been released.
placement
A value indicating whether the dragged item should be placed before or after the destination item.
ReorderEndedEventArgs(object, object, ItemReorderPlacement)
Initializes a new instance of the ReorderEndedEventArgs class.
Declaration
public ReorderEndedEventArgs(object item, object destinationItem, ItemReorderPlacement placement)
Parameters
item
The data item that is being interacted with.
destinationItem
The data item that corresponds to the location where the dragged item has been released.
placement
A value indicating whether the dragged item should be placed before or after the destination item.
Properties
DestinationGroup
Gets the data group that corresponds to the location where the dragged item has been released.
DestinationItem
Gets the data item that corresponds to the location where the dragged item has been released.
Group
Gets the data group containing the data item that is being interacted with.
Item
Gets the data item that is being interacted with.
Placement
Gets a value indicating whether the dargged item should be placed before or after the destination item.
Declaration
public ItemReorderPlacement Placement { get; }
Property Value