Class ReorderStartingCommandContext
Provides context information for the reorder starting command.
Inheritance
System.Object
ReorderStartingCommandContext
Namespace: Telerik.Maui.Controls.Compatibility.DataControls.ListView.Commands
Assembly: Telerik.Maui.Controls.Compatibility.dll
Syntax
public class ReorderStartingCommandContext : Object
Constructors
ReorderStartingCommandContext(Object, Boolean)
Initializes a new instance of the ReorderStartingCommandContext class.
Declaration
public ReorderStartingCommandContext(object item, bool cancel)
Parameters
System.Object
item
The item being reordered. |
System.Boolean
cancel
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
public bool Cancel { get; set; }
Property Value
System.Boolean
|
Item
Gets the item being reordered.
Declaration
public object Item { get; }
Property Value
System.Object
|