Class FieldDropEventArgs
The field drop event arguments provides the necessary information to customize the drop field and its drop axis.
Inheritance
System.Object
FieldDropEventArgs
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class FieldDropEventArgs : Object
Constructors
FieldDropEventArgs()
Declaration
public FieldDropEventArgs()
Properties
Cancel
Defines an option to restrict the field drop operation.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
DataSourceSettings
Defines current report.
Declaration
public DataOptions DataSourceSettings { get; set; }
Property Value
Type | Description |
---|---|
DataOptions |
DraggedAxis
Defines the axis where the field has been dragged.
Declaration
public string DraggedAxis { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DropAxis
Defines the axis where the field will drop.
Declaration
public string DropAxis { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DropField
Defines drop field item.
Declaration
public FieldOptions DropField { get; set; }
Property Value
Type | Description |
---|---|
FieldOptions |
DropPosition
Defines drop field position.
Declaration
public int DropPosition { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
FieldName
Defines drop field name.
Declaration
public string FieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String |