Gets or sets a value that determines how an input character that matches the prompt character should be handled.

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

Syntax

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

Remarks

Returns true if the prompt character entered as input causes the current editable position in the mask to be reset; otherwise, false to indicate that the prompt character is to be processed as a normal input character. The default is true.

See Also