Class
ReorderEndedEventArgs

Provides data for the ReorderEnded event.

Definition

Namespace:Telerik.Maui.Controls.Compatibility.DataControls.ListView

Assembly:Telerik.Maui.Controls.Compatibility.dll

Syntax:

cs-api-definition
public class ReorderEndedEventArgs : EventArgs

Inheritance: objectEventArgsReorderEndedEventArgs

Inherited Members EventArgs.Empty

Constructors

ReorderEndedEventArgs(object, IDataGroup, object, IDataGroup, ItemReorderPlacement)

Initializes a new instance of the ReorderEndedEventArgs class.

Declaration

cs-api-definition
public ReorderEndedEventArgs(object item, IDataGroup group, object destinationItem, IDataGroup destinationGroup, ItemReorderPlacement placement)

Parameters

item

object

The data item that is being interacted with.

group

IDataGroup

The data group containing the data item that is being interacted with.

destinationItem

object

The data item that corresponds to the location where the dragged item has been released.

destinationGroup

IDataGroup

The data group that corresponds to the location where the dragged item has been released.

placement

ItemReorderPlacement

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

cs-api-definition
public ReorderEndedEventArgs(object item, object destinationItem, ItemReorderPlacement placement)

Parameters

item

object

The data item that is being interacted with.

destinationItem

object

The data item that corresponds to the location where the dragged item has been released.

placement

ItemReorderPlacement

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.

Declaration

cs-api-definition
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

cs-api-definition
public object DestinationItem { get; }

Property Value

object

Group

Gets the data group containing the data item that is being interacted with.

Declaration

cs-api-definition
public IDataGroup Group { get; }

Property Value

IDataGroup

Item

Gets the data item that is being interacted with.

Declaration

cs-api-definition
public object Item { get; }

Property Value

object

Placement

Gets a value indicating whether the dargged item should be placed before or after the destination item.

Declaration

cs-api-definition
public ItemReorderPlacement Placement { get; }

Property Value

ItemReorderPlacement