Gets or sets a value indicating whether the user is allowed to re-enter literal values.

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

Syntax

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

Remarks

Returns true to allow literals to be reentered; otherwise, false to prevent the user from overwriting literal characters. The default is true. Masks can contain literal and editable characters. If an attempt is made to add an input character to the position in a mask occupied by a literal, the value of the SkipLiterals property determines the result.

See Also