New to Telerik UI for .NET MAUIStart a free 30-day trial

Abstract base class for all items performing adjustments in the RadImageEditorToolbar control.

Definition

Constructors

C#
protected ImageEditorAdjustmentToolbarItem()

Fields

MaximumProperty

BindableProperty

Identifies the Maximum property.

C#
public static readonly BindableProperty MaximumProperty

MinimumProperty

BindableProperty

Identifies the Minimum property.

C#
public static readonly BindableProperty MinimumProperty

ValueProperty

BindableProperty

Identifies the Value property.

C#
public static readonly BindableProperty ValueProperty

Properties

Gets or sets the maximum value, when using an auto-generated slider content.

C#
public double Maximum { get; set; }

Gets or sets the minimum value, when using an auto-generated slider content.

C#
public double Minimum { get; set; }

Gets or sets the current value, when using an auto-generated slider content.

C#
public double Value { get; set; }

Events

Raised when the Value property has changed.

C#
public event EventHandler ValueChanged