Class TreeGridFilterColumn
Configures Tree Grid filter column
Inheritance
System.Object
Syncfusion.Blazor.SfBaseComponent
TreeGridFilterColumn
Inherited Members
Namespace: Syncfusion.Blazor.TreeGrid
Assembly: Syncfusion.Blazor.dll
Syntax
public class TreeGridFilterColumn : SfDataBoundComponent
Constructors
TreeGridFilterColumn()
Declaration
public TreeGridFilterColumn()
Properties
ActualValue
Defines the Actual value used to filter records.
Declaration
public object ActualValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Field
Defines the Field name of the filter column.
Declaration
public string Field { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IgnoreAccent
If IgnoreAccent is set to true, then filter ignores the diacritic characters or accents while filtering.
Declaration
public bool IgnoreAccent { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
MatchCase
If MatchCase set to true, then filter records with exact match or else filter records with case insensitive(uppercase and lowercase letters treated as same).
Declaration
public bool MatchCase { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Operator
Defines the Operator to filter records. The available operators and its supported data types are:
Declaration
public Operator Operator { get; set; }
Property Value
Type | Description |
---|---|
Operator |
Predicate
Defines the relationship between one filter query and another by using AND or OR predicate.
Declaration
public string Predicate { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Value
Defines the value used to filter records.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task |
Overrides
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task |