Class RuleDragStartingEventArgs
Provides the event data for the RuleDragStarting event of the SfQueryBuilder<TValue>.
Inheritance
Namespace: Syncfusion.Blazor.QueryBuilder
Assembly: Syncfusion.Blazor.dll
Syntax
public class RuleDragStartingEventArgs : Object
Constructors
RuleDragStartingEventArgs()
Declaration
public RuleDragStartingEventArgs()
Properties
Cancel
Gets or sets a value indicating whether the drag start event should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
DragGroupID
Gets the ID of the group being dragged within the source SfQueryBuilder<TValue>.
Declaration
public string DragGroupID { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the ID of the dragged group. Returns |
Remarks
The DragGroupID
property returns the ID of a group only when a group is being dragged.
It returns null
when a rule is being dragged.
DragRuleID
Gets the ID of the rule being dragged within the source SfQueryBuilder<TValue>.
Declaration
public string DragRuleID { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the ID of the dragged rule. Returns |
Remarks
The DragRuleID
property returns the ID of a rule only when a rule is being dragged.
It returns null
when a group is being dragged.