Class FilterElement
Class which is used to provide information about filter value
Inheritance
System.Object
FilterElement
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Syncfusion.UI.Xaml.Grid
Assembly: Syncfusion.SfGrid.WPF.dll
Syntax
public class FilterElement : INotifyPropertyChanged, IFilterElement
Constructors
FilterElement()
Declaration
public FilterElement()
Properties
ActualValue
Gets or sets the actual value.
Declaration
public 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
public 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
public Func<object, string> FormattedString { get; set; }
Property Value
Type | Description |
---|---|
System.Func<System.Object, System.String> | The formatted string. |
IsSelected
Gets or sets a value indicating whether this instance is selected.
Declaration
public bool IsSelected { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Methods
Clone()
Declaration
public object Clone()
Returns
Type | Description |
---|---|
System.Object |
RaisePropertyChanged(String)
Raises the property changed.
Declaration
public void RaisePropertyChanged(string propertyName)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName | Name of the property. |
Events
PropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type | Description |
---|---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged