4 writes to CutCopyMaskFormat
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\MaskedTextBoxDesigner.cs (1)
74designMaskedTextBox.CutCopyMaskFormat = maskedTextBox.CutCopyMaskFormat;
System.Windows.Forms.Tests (3)
MaskedTextBoxTests.cs (3)
318control.CutCopyMaskFormat = value; 324control.CutCopyMaskFormat = value; 330control.Invoking(c => c.CutCopyMaskFormat = (MaskFormat)4)
5 references to CutCopyMaskFormat
System.Windows.Forms (2)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (2)
1787bool includePrompt = (CutCopyMaskFormat & MaskFormat.IncludePrompt) != 0; 1788bool includeLiterals = (CutCopyMaskFormat & MaskFormat.IncludeLiterals) != 0;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\MaskedTextBoxDesigner.cs (1)
74designMaskedTextBox.CutCopyMaskFormat = maskedTextBox.CutCopyMaskFormat;
System.Windows.Forms.Tests (2)
MaskedTextBoxTests.cs (2)
320control.CutCopyMaskFormat.Should().Be(value); 326control.CutCopyMaskFormat.Should().Be(value);