Edit

Share via


MaskedTextBox.AllowPromptAsInput Property

Definition

Gets or sets a value indicating whether PromptChar can be entered as valid data by the user.

public:
 property bool AllowPromptAsInput { bool get(); void set(bool value); };
public bool AllowPromptAsInput { get; set; }
member this.AllowPromptAsInput : bool with get, set
Public Property AllowPromptAsInput As Boolean

Property Value

true if the user can enter the prompt character into the control; otherwise, false. The default is true.

Remarks

Even when AllowPromptAsInput is true, the prompt character must be valid for the current ___location in the mask in order to be accepted. For example, if PromptChar is "*", and the current ___location in the mask demands the user enter a digit, entering an asterisk (*) will fail and cause the MaskInputRejected event to occur.

The ResetOnPrompt property takes precedence over AllowPromptAsInput.

Applies to

See also