Gets or sets the input mask to use at run time. Mask must be a string composed of one or more of the masking elements, enumeration parts, or numeric ranges.

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

Syntax

C#
[JsonAttribute(true, true, "")]
[DefaultValueAttribute("")]
[EditorAttribute("C1.Web.UI.Design.UITypeEditors.C1InputMaskUITypeEditor, C1.Web.UI.Design.2", 
	typeof(UITypeEditor))]
[C1CategoryAttribute("Category.Behavior")]
[BindableAttribute(false)]
public virtual string Mask { get; set; }
Visual Basic (Declaration)
<JsonAttribute(True, True, "")> _
<DefaultValueAttribute("")> _
<EditorAttribute("C1.Web.UI.Design.UITypeEditors.C1InputMaskUITypeEditor, C1.Web.UI.Design.2",  _
	GetType(UITypeEditor))> _
<C1CategoryAttribute("Category.Behavior")> _
<BindableAttribute(False)> _
Public Overridable Property Mask As String
	Get
	Set

Remarks

For a list of masking elements, see the Defining C1MaskedInput topic.

See Also