MaskedTextProvider.IncludeLiterals Property

Definition

Gets or sets a value that indicates whether literal characters in the input mask should be included in the formatted string.

public:
 property bool IncludeLiterals { bool get(); void set(bool value); };
public bool IncludeLiterals { get; set; }
member this.IncludeLiterals : bool with get, set
Public Property IncludeLiterals As Boolean

Property Value

true if literals are included; otherwise, false. The default is true.

Remarks

The IncludePrompt and IncludeLiterals properties will determine whether prompt and literal characters appear when calling the ToString method. By setting both of these properties to false, the parsed string will represent only the characters entered by the user.

Applies to

See also