MaskedTextProvider.IncludePrompt Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether PromptChar is used to represent the absence of user input when displaying the formatted string.
public:
property bool IncludePrompt { bool get(); void set(bool value); };
public bool IncludePrompt { get; set; }
member this.IncludePrompt : bool with get, set
Public Property IncludePrompt As Boolean
Property Value
true
if the prompt character is used to represent the positions where no user input was provided; 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.