Class FilterCommandContext
This object is passed as a parameter to the FilterCommand and FilterInteractiveCommand command.
Inheritance
Namespace: Telerik.Maui.Controls.ImageEditor
Assembly: Telerik.Maui.Controls.dll
Syntax
public class FilterCommandContext : BindableObject
Constructors
FilterCommandContext()
Declaration
public FilterCommandContext()
Fields
BlurProperty
Identifies the Blur property.
Declaration
public static readonly BindableProperty BlurProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
BrightnessProperty
Identifies the Brightness property.
Declaration
public static readonly BindableProperty BrightnessProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ContrastProperty
Identifies the Contrast property.
Declaration
public static readonly BindableProperty ContrastProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
HueProperty
Identifies the Hue property.
Declaration
public static readonly BindableProperty HueProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SaturationProperty
Identifies the Saturation property.
Declaration
public static readonly BindableProperty SaturationProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SharpenProperty
Identifies the Sharpen property.
Declaration
public static readonly BindableProperty SharpenProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
Blur
Gets or sets the radius of the blur filter in pixels. The default value of 0 preserves the original sharpness of the image. Positive values increase the strength of the blur filter.
Declaration
public double Blur { get; set; }
Property Value
System.Double
|
Brightness
Gets or sets the strength of the brightness filter in percent. The default value of 0 preserves the original brightness of the image. Positive values increase the brightness, where 100% is the maximum. Negative values decrease the brightness, where -100% is the minimum.
Declaration
public double Brightness { get; set; }
Property Value
System.Double
|
Contrast
Gets or sets the strength of the contrast filter in percent. The default value of 0 preserves the original contrast of the image. Positive values increase the contrast, where 100% is the maximum. Negative values decrease the contrast, where -100% is the minimum.
Declaration
public double Contrast { get; set; }
Property Value
System.Double
|
Hue
Gets or sets the strength of the hue filter in percent. The default value of 0 preserves the original hue of the image. Positive values shift the hue in positive direction, where 100% is the maximum. Negative values shift the hue in negative direction, where -100% is the minimum.
Declaration
public double Hue { get; set; }
Property Value
System.Double
|
Saturation
Gets or sets the strength of the saturation filter in percent. The default value of 0 preserves the original saturation of the image. Positive values increase the saturation, where 100% is the maximum. Negative values decrease the saturation, where -100% is the minimum.
Declaration
public double Saturation { get; set; }
Property Value
System.Double
|
Sharpen
Gets or sets the radius of the sharpen filter in pixels. The default value of 0 preserves the original sharpness of the image. Positive values increase the strength of the sharpen filter.
Declaration
public double Sharpen { get; set; }
Property Value
System.Double
|