Returns a string that represents the current masked text box. This method overrides TextBoxBase.ToString.
A string that contains information about the current System.Windows.Forms.MaskedTextBox. The string includes the type, a simplified view of the input string, and the formatted input string.
This version of the MaskedTextBox.ToString method calls the base class implementation of this method, TextBoxBase.ToString, then appends the input string after processing by the mask. This method honors properties that alter the appearance of the formatted string, with the following exceptions:
The returned string always includes prompt and literal characters, regardless of the values of the MaskedTextBox.TextMaskFormat property.
Password characters are ignored, so that the actual user-typed characters are returned. In other words, the values of the MaskedTextBox.PasswordChar and MaskedTextBox.UseSystemPasswordChar properties are ignored.