Interface IFilterElement
Provides the common properties of FilterElement that have been used in FilterRow and AdvancedFiltering in SfDataGrid.
Namespace: Syncfusion.UI.Xaml.Grid
Assembly: Syncfusion.SfGrid.WPF.dll
Syntax
public interface IFilterElement
Properties
ActualValue
Gets or sets the actual value.
Declaration
object ActualValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object | The actual value. |
DisplayText
Gets or sets the formatted value to display and filter.
Declaration
string DisplayText { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name. |
FormattedString
Gets or sets the formatted string. Encapsulates a GridFilterControl.GetFormattedString method to convert the ActualValue with formatting in GridFilterElement
Declaration
Func<object, string> FormattedString { get; set; }
Property Value
Type | Description |
---|---|
System.Func<System.Object, System.String> | The formatted string. |