Class
ReorderStartingCommandContext

Provides context information for the reorder starting command.

Definition

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

Assembly:Telerik.Maui.Controls.Compatibility.dll

Syntax:

cs-api-definition
public class ReorderStartingCommandContext

Inheritance: objectReorderStartingCommandContext

Constructors

ReorderStartingCommandContext(object, bool)

Initializes a new instance of the ReorderStartingCommandContext class.

Declaration

cs-api-definition
public ReorderStartingCommandContext(object item, bool cancel)

Parameters

item

object

The item being reordered.

cancel

bool

A value indicating whether the reorder operation should be canceled.

Properties

Cancel

Gets or sets a value indicating whether the reorder operation should be canceled.

Declaration

cs-api-definition
public bool Cancel { get; set; }

Property Value

bool

Item

Gets the item being reordered.

Declaration

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

Property Value

object