Share via


ColorPicker.IsColorChannelTextInputVisible Property

Definition

Gets or sets a value that indicates whether the text input boxes for the color channels are shown.

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

public:
 property bool IsColorChannelTextInputVisible { bool get(); void set(bool value); };
bool IsColorChannelTextInputVisible();

void IsColorChannelTextInputVisible(bool value);
public bool IsColorChannelTextInputVisible { get; set; }
var boolean = colorPicker.isColorChannelTextInputVisible;
colorPicker.isColorChannelTextInputVisible = boolean;
Public Property IsColorChannelTextInputVisible As Boolean
<ColorPicker IsColorChannelTextInputVisible="bool" .../>

Property Value

Boolean

bool

true if the color channel text input boxes are shown; otherwise, false. The default is true.

Applies to