Class RuleDragStartingEventArgs
Provides event arguments for the RuleDragStarting event, which occurs when a user begins dragging a rule or group.
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 to cancel the drag operation.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
Setting this property to true
will stop the rule or group from being dragged.
DragGroupID
Gets or sets the ID of the group being dragged.
Declaration
public string DragGroupID { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the ID of the dragged group. This property is |
Remarks
This property is populated only when a group is being dragged, not a rule.
DragRuleID
Gets or sets the ID of the rule being dragged.
Declaration
public string DragRuleID { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the ID of the dragged rule. This property is |
Remarks
This property is populated only when a rule is being dragged, not a group.