ColorPicker.MinHue Property

Definition

Gets or sets the minimum Hue value in the range 0-359.

Equivalent WinUI 2 API for UWP: Microsoft.UI.Xaml.Controls.ColorPicker.MinHue (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).

public:
 property int MinHue { int get(); void set(int value); };
int MinHue();

void MinHue(int value);
public int MinHue { get; set; }
var int32 = colorPicker.minHue;
colorPicker.minHue = int32;
Public Property MinHue As Integer
<ColorPicker MinHue="int" .../>

Property Value

Int32

int

The minimum Hue value in the range 0-359. The default is 0.

Remarks

The valid range for Hue values is 0-359. Setting a value outside of this range will cause an exception.

Applies to