Class DragEventArgs
Provides information about the dragged tab item.
Inherited Members
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class DragEventArgs
Constructors
DragEventArgs()
Declaration
public DragEventArgs()
Properties
Cancel
Gets or sets whether the drag action should be canceled or not.
Declaration
public bool Cancel { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
|
DraggedItem
Gets the dragged tab item index.
Declaration
public TabItem DraggedItem { get; }
Property Value
| Type | Description |
|---|---|
| TabItem | The TabItem object representing the dragged tab item. |
DroppedItem
Gets the dropped tab item index.
Declaration
public TabItem DroppedItem { get; }
Property Value
| Type | Description |
|---|---|
| TabItem | The TabItem object representing the dropped tab item. |
Index
Gets the index of tab item.
Declaration
public int Index { get; }
Property Value
| Type | Description |
|---|---|
| int | Accepts an integer value. |
Left
Gets the Client X value of target element.
Declaration
public double Left { get; }
Property Value
| Type | Description |
|---|---|
| double | Accepts the double value. |
Top
Gets the Client Y value of target element.
Declaration
public double Top { get; }
Property Value
| Type | Description |
|---|---|
| double | Accepts the double value. |