Class ReorderEndedEventArgs
Inheritance
Namespace: Telerik.Maui.Controls.Compatibility.DataControls.ListView
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public class ReorderEndedEventArgs : EventArgs
Constructors
ReorderEndedEventArgs(Object, Object, ItemReorderPlacement)
Declaration
public ReorderEndedEventArgs(object item, object destinationItem, ItemReorderPlacement placement)
Parameters
System.Object
item
|
System.Object
destinationItem
|
ItemReorderPlacement
placement
|
ReorderEndedEventArgs(Object, IDataGroup, Object, IDataGroup, ItemReorderPlacement)
Declaration
public ReorderEndedEventArgs(object item, IDataGroup group, object destinationItem, IDataGroup destinationGroup, ItemReorderPlacement placement)
Parameters
System.Object
item
|
IDataGroup
group
|
System.Object
destinationItem
|
IDataGroup
destinationGroup
|
ItemReorderPlacement
placement
|
Properties
DestinationGroup
Gets the data group that corresponds to the location where the dragged item has been released.
Declaration
public IDataGroup DestinationGroup { get; }
Property Value
IDataGroup
|
DestinationItem
Gets the data item that corresponds to the location where the dragged item has been released.
Declaration
public object DestinationItem { get; }
Property Value
System.Object
|
Group
Gets the data group containing the data item that is being interacted with.
Declaration
public IDataGroup Group { get; }
Property Value
IDataGroup
|
Item
Gets the data item that is being interacted with.
Declaration
public object Item { get; }
Property Value
System.Object
|
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
ItemReorderPlacement
|