Class BlockDragStartingEventArgs
Provides data for the BlockDragStarting event. This event is triggered when a drag operation for one or more blocks begins.
Inherited Members
Namespace: Syncfusion.Blazor.BlockEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class BlockDragStartingEventArgs
Constructors
BlockDragStartingEventArgs()
Declaration
public BlockDragStartingEventArgs()
Properties
Blocks
Gets or sets the list of block models that are being dragged.
Declaration
public List<BlockModel> Blocks { get; set; }
Property Value
| Type |
|---|
| List<BlockModel> |
DropIndex
Gets or sets the intended drop index where the blocks would be placed if dropped at this moment.
Declaration
public int DropIndex { get; set; }
Property Value
| Type |
|---|
| int |
FromIndex
Gets or sets the indices of the blocks from which the drag started.
Declaration
public List<int> FromIndex { get; set; }
Property Value
| Type |
|---|
| List<int> |
Remarks
Contains one or more indices when multi-block drag is supported.