Class RuleDroppedEventArgs
Provides event arguments for the RuleDropped event, which occurs after a rule or group has been successfully dropped.
Inheritance
System.Object
RuleDroppedEventArgs
Namespace: Syncfusion.Blazor.QueryBuilder
Assembly: Syncfusion.Blazor.dll
Syntax
public class RuleDroppedEventArgs : Object
Constructors
RuleDroppedEventArgs()
Declaration
public RuleDroppedEventArgs()
Properties
DropGroupID
Gets or sets the ID of the group onto which a dragged item was dropped.
Declaration
public string DropGroupID { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the ID of the target group. This will be |
Remarks
This property identifies the group that received the dropped item.
Use the GetGroup
method to retrieve the group instance using this ID.
DropRuleID
Gets or sets the ID of the rule onto which a dragged item was dropped.
Declaration
public string DropRuleID { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the ID of the target rule. This will be |
Remarks
This property identifies the rule that received the dropped item.
Use the GetRule
method to retrieve the rule instance using this ID.