Gets or sets the character used to represent the absence of user input in the control.

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

Syntax

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

Remarks

A prompt character is placed in editable positions that have not yet been assigned an input value. The default is an underscore (_).

See Also