Class
FilterCommandContext

This object is passed as a parameter to the FilterCommand and FilterInteractiveCommand command.

Definition

Namespace:Telerik.Maui.Controls.ImageEditor

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class FilterCommandContext : BindableObject

Inheritance: objectFilterCommandContext

Constructors

FilterCommandContext()

Declaration

cs-api-definition
public FilterCommandContext()

Fields

BlurProperty

Identifies the Blur property.

Declaration

cs-api-definition
public static readonly BindableProperty BlurProperty

Field Value

BindableProperty

BrightnessProperty

Identifies the Brightness property.

Declaration

cs-api-definition
public static readonly BindableProperty BrightnessProperty

Field Value

BindableProperty

ContrastProperty

Identifies the Contrast property.

Declaration

cs-api-definition
public static readonly BindableProperty ContrastProperty

Field Value

BindableProperty

HueProperty

Identifies the Hue property.

Declaration

cs-api-definition
public static readonly BindableProperty HueProperty

Field Value

BindableProperty

SaturationProperty

Identifies the Saturation property.

Declaration

cs-api-definition
public static readonly BindableProperty SaturationProperty

Field Value

BindableProperty

SharpenProperty

Identifies the Sharpen property.

Declaration

cs-api-definition
public static readonly BindableProperty SharpenProperty

Field Value

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

cs-api-definition
public double Blur { get; set; }

Property Value

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

cs-api-definition
public double Brightness { get; set; }

Property Value

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

cs-api-definition
public double Contrast { get; set; }

Property Value

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

cs-api-definition
public double Hue { get; set; }

Property Value

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

cs-api-definition
public double Saturation { get; set; }

Property Value

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

cs-api-definition
public double Sharpen { get; set; }

Property Value

double