Class ChangeEventArgs
Interface for Change event.
Inheritance
System.Object
ChangeEventArgs
Namespace: Syncfusion.Blazor.QueryBuilder
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChangeEventArgs : Object
Constructors
ChangeEventArgs()
Declaration
public ChangeEventArgs()
Properties
Cancel
Set true to prevent rules from changing.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IsNewRule
Specifies whether the new rule has been inserted or not.
Declaration
public bool IsNewRule { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | Accepts the boolean value. |
Name
Specifies name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Not
Specifies not condition of the rule.
Declaration
public bool Not { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
RuleId
Specifies id of the rule.
Declaration
public string RuleId { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
SelectedField
Specifies selected field of the rule.
Declaration
public string SelectedField { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
SelectedIndex
Specifies selected index of the rule.
Declaration
public Nullable<int> SelectedIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | Accepts an integer value. |
Type
Specifies type of the rule.
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
Value
Specifies value of the rule.
Declaration
public dynamic Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | A dynamic object that represents the value of the rule. |