Table of Contents

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 string

The unique identifier of the zone.

oldZoneIdentifier string

The unique identifier of the previous zone.

index int

The index of the zone.

Properties

Index

The index of the zone.

public int Index { get; }

Property Value

int

OldZoneIdentifier

The unique identifier of the previous zone.

public string OldZoneIdentifier { get; }

Property Value

string

ZoneIdentifier

The unique identifier of the zone.

public string ZoneIdentifier { get; }

Property Value

string