Class EqualConverter
This class checks whether the value and parameter it's equal or not
Inheritance
System.Object
EqualConverter
Implements
Microsoft.Maui.Controls.IValueConverter
Namespace: Syncfusion.Maui.Core.Converters
Assembly: Syncfusion.Maui.Core.dll
Syntax
public class EqualConverter : Object, IValueConverter
Constructors
EqualConverter()
Declaration
public EqualConverter()
Methods
Convert(Object, Type, Object, CultureInfo)
This method is used to compare the value and parameter
Declaration
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | The value must be the type of any value |
System.Type | targetType | The type of the target property |
System.Object | parameter | An additional parameter for the converter to handle, not used |
System.Globalization.CultureInfo | culture | The culture to use in the converter, not used |
Returns
Type | Description |
---|---|
System.Object | Returns the bool value of the comparison |
ConvertBack(Object, Type, Object, CultureInfo)
Converts back is impossible to revert to original value
Declaration
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | value be the type of InverseColor |
System.Type | targetType | The type of the target property |
System.Object | parameter | An additional parameter for the converter to handle, not used |
System.Globalization.CultureInfo | culture | The culture to use in the converter, not used |
Returns
Type |
---|
System.Object |
Implements
Microsoft.Maui.Controls.IValueConverter