11 references to InsertKeyMode
System.Windows.Forms (11)
winforms\Managed\System\WinForms\MaskedTextBox.cs (11)
115
private
InsertKeyMode
insertMode;
178
this.insertMode =
InsertKeyMode
.Default;
557
DefaultValue(
InsertKeyMode
.Default)
559
public
InsertKeyMode
InsertKeyMode
568
if (!ClientUtils.IsEnumValid(value, (int)value, (int)
InsertKeyMode
.Default, (int)
InsertKeyMode
.Overwrite))
570
throw new InvalidEnumArgumentException("value", (int)value, typeof(
InsertKeyMode
));
615
case
InsertKeyMode
.Overwrite:
618
case
InsertKeyMode
.Insert:
621
case
InsertKeyMode
.Default:
2066
if (keyCode == Keys.Insert && e.Modifiers == Keys.None && this.insertMode ==
InsertKeyMode
.Default)