Class MudDragAndDropIndexChangedEventArgs
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
The information related to a MudDropZone<T> index change event.
public class MudDragAndDropIndexChangedEventArgs : EventArgs
- Inheritance
-
MudDragAndDropIndexChangedEventArgs
- Inherited Members
- Extension Methods
Constructors
MudDragAndDropIndexChangedEventArgs(string, string, int)
Creates a new instance.
public MudDragAndDropIndexChangedEventArgs(string zoneIdentifier, string oldZoneIdentifier, int index)
Parameters
zoneIdentifier
stringThe unique identifier of the zone.
oldZoneIdentifier
stringThe unique identifier of the previous zone.
index
intThe index of the zone.
Properties
Index
The index of the zone.
public int Index { get; }
Property Value
OldZoneIdentifier
The unique identifier of the previous zone.
public string OldZoneIdentifier { get; }
Property Value
ZoneIdentifier
The unique identifier of the zone.
public string ZoneIdentifier { get; }