Class ColorToGrayScaleColorConverter
This class converts the color value into gray scale color value
Inheritance
System.Object
ColorToGrayScaleColorConverter
Implements
Microsoft.Maui.Controls.IValueConverter
Namespace: Syncfusion.Maui.Core.Converters
Assembly: Syncfusion.Maui.Core.dll
Syntax
public class ColorToGrayScaleColorConverter : Object, IValueConverter
Constructors
ColorToGrayScaleColorConverter()
Declaration
public ColorToGrayScaleColorConverter()
Methods
Convert(Object, Type, Object, CultureInfo)
Converts color value to an gray scale color type.
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 color |
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 | GrayScaleColor |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | Exception thrown when the value type is null or not a type of Color |
ConvertBack(Object, Type, Object, CultureInfo)
Converts back the gray scale color to color type
Declaration
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
Parameters
Type | Name | Description |
---|---|---|
System.Object | value | The value must be the type of SolidColorBrush |
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 |
Exceptions
Type | Condition |
---|---|
System.NotSupportedException |
Implements
Microsoft.Maui.Controls.IValueConverter