Share via


ColorPicker.MaxHue プロパティ

定義

0 から 359 の範囲の最大 Hue 値を取得または設定します。

UWP 用の同等の WinUI 2 API: Microsoft.UI.Xaml.Controls.ColorPicker.MaxHue (Windows アプリ SDKの WinUI の場合は、Windows アプリ SDK名前空間を参照してください)。

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

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

プロパティ値

Int32

int

0 から 359 の範囲の最大 Hue 値。 既定値は 359 です。

注釈

Hue 値の有効な範囲は 0 から 359 です。 この範囲外の値を設定すると、例外が発生します。

適用対象