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 | A DataOptions object that represents the current report with its associated data source and settings. |
DraggedAxis
Defines the axis where the field has been dragged.
Declaration
public string DraggedAxis { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
DropAxis
Defines the axis where the field will drop.
Declaration
public string DropAxis { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
DropField
Defines drop field item.
Declaration
public FieldOptions DropField { get; set; }
Property Value
Type | Description |
---|---|
FieldOptions | The FieldOptions object representing the dropped field. |
DropPosition
Defines drop field position.
Declaration
public int DropPosition { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
FieldName
Defines drop field name.
Declaration
public string FieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |