MaskedTextBox.IsOverwriteMode 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 a value that specifies whether new user input overwrites existing input.

[System.ComponentModel.Browsable(false)]
public bool IsOverwriteMode { get; }

Property Value

true if MaskedTextBox will overwrite existing characters as the user enters new ones; false if MaskedTextBox will shift existing characters forward. The default is false.

Attributes

Remarks

IsOverwriteMode takes into account both the value of the InsertKeyMode property and the state of the user's keyboard. If InsertKeyMode is set to either Insert or Overwrite, IsOverwriteMode will return false or true, respectively. If InsertKeyMode is set to Default, it will return the state of the INSERT key.

When IsOverwriteMode is false, MaskedTextBox will reject as invalid any character entry that would result in a violation anywhere in the mask. In explanation, if inserting a character would cause a character to be shifted over into a mask position where it would not be valid, the character insertion will be rejected.

Applies to

Продукт Версии
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also