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

Namespace:  C1.Web.UI.Controls.C1Input
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[C1CategoryAttribute("Category.Behavior")]
[DefaultValueAttribute(false)]
[BindableAttribute(false)]
[JsonAttribute(true, true, false)]
public virtual bool AllowPromptAsInput { get; set; }
Visual Basic (Declaration)
<C1CategoryAttribute("Category.Behavior")> _
<DefaultValueAttribute(False)> _
<BindableAttribute(False)> _
<JsonAttribute(True, True, False)> _
Public Overridable Property AllowPromptAsInput As Boolean
	Get
	Set

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.

See Also