Class RuleChangeEventArgs
Interface for RuleChange event.
Inheritance
System.Object
RuleChangeEventArgs
Namespace: Syncfusion.Blazor.QueryBuilder
Assembly: Syncfusion.Blazor.dll
Syntax
public class RuleChangeEventArgs : Object
Constructors
RuleChangeEventArgs()
Declaration
public RuleChangeEventArgs()
Properties
Name
Specifies name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
PreviousRule
Specifies previous rule.
Declaration
public RuleModel PreviousRule { get; set; }
Property Value
Type | Description |
---|---|
RuleModel | A RuleModel object that represents the previous rule for the component. |
Rule
Specifies current rule.
Declaration
public RuleModel Rule { get; set; }
Property Value
Type | Description |
---|---|
RuleModel | A RuleModel object that represents the current rule for the component. |
RuleId
Specifies id of the rule.
Declaration
public string RuleId { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Type
Specifies type of the rule.
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |