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
zoneIdentifierstringThe unique identifier of the zone.
oldZoneIdentifierstringThe unique identifier of the previous zone.
indexintThe 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; }