Share via


NumberBox.PlaceholderText Property

Definition

Gets or sets the text that is displayed in the data entry field of the control until the value is changed by a user action or some other operation.

public:
 property Platform::String ^ PlaceholderText { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring PlaceholderText();

void PlaceholderText(winrt::hstring value);
public string PlaceholderText { get; set; }
var string = numberBox.placeholderText;
numberBox.placeholderText = string;
Public Property PlaceholderText As String

Property Value

String

Platform::String

winrt::hstring

The text that is displayed in the data entry field of the control until the value is changed by a user action or some other operation. The default is an empty string.

Remarks

Placeholder text only appears when Value is set to Double.NaN or when the input is cleared by the user.

Applies to

See also