Class FieldDroppedEventArgs
The field dropped event arguments provides the necessary information about the dropped field and its dropped axis.
Inheritance
System.Object
FieldDroppedEventArgs
Namespace: Syncfusion.Blazor.PivotView
Assembly: Syncfusion.Blazor.dll
Syntax
public class FieldDroppedEventArgs : Object
Constructors
FieldDroppedEventArgs()
Declaration
public FieldDroppedEventArgs()
Properties
DataSourceSettings
Defines current report.
Declaration
public DataOptions DataSourceSettings { get; set; }
Property Value
Type | Description |
---|---|
DataOptions | A DataOptions object that represents the data source settings for the current report. |
DroppedAxis
Defines the axis where the field has been dropped.
Declaration
public string DroppedAxis { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
DroppedField
Defines the dropped field item.
Declaration
public FieldOptions DroppedField { get; set; }
Property Value
Type | Description |
---|---|
FieldOptions | A FieldOptions object that represents the dropped field item. |
DroppedPosition
Defines the position where the field has been dropped.
Declaration
public int DroppedPosition { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
FieldName
Defines the dropped field name.
Declaration
public string FieldName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |