Class BlockDroppedEventArgs
Provides data for the BlockDropped event. This event is triggered when dragged blocks are successfully dropped.
Inherited Members
Namespace: Syncfusion.Blazor.BlockEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class BlockDroppedEventArgs
Constructors
BlockDroppedEventArgs()
Declaration
public BlockDroppedEventArgs()
Properties
Blocks
Gets or sets the list of block models that were dropped.
Declaration
public List<BlockModel> Blocks { get; set; }
Property Value
| Type |
|---|
| List<BlockModel> |
DropIndex
Gets or sets the final index where the blocks were dropped.
Declaration
public int DropIndex { get; set; }
Property Value
| Type |
|---|
| int |
FromIndex
Gets or sets the indices of the blocks from which they were dragged.
Declaration
public List<int> FromIndex { get; set; }
Property Value
| Type |
|---|
| List<int> |