5 writes to CutCopyMaskFormat
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\MaskedTextBoxDesigner.cs (1)
74designMaskedTextBox.CutCopyMaskFormat = maskedTextBox.CutCopyMaskFormat;
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\MaskedTextBoxDesignerTests.cs (1)
76CutCopyMaskFormat = MaskFormat.IncludePrompt,
System.Windows.Forms.Tests (3)
MaskedTextBoxTests.cs (3)
320control.CutCopyMaskFormat = value; 326control.CutCopyMaskFormat = value; 332control.Invoking(c => c.CutCopyMaskFormat = (MaskFormat)4)
6 references to CutCopyMaskFormat
System.Windows.Forms (2)
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (2)
1785bool includePrompt = (CutCopyMaskFormat & MaskFormat.IncludePrompt) != 0; 1786bool includeLiterals = (CutCopyMaskFormat & MaskFormat.IncludeLiterals) != 0;
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\MaskedTextBoxDesigner.cs (1)
74designMaskedTextBox.CutCopyMaskFormat = maskedTextBox.CutCopyMaskFormat;
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\MaskedTextBoxDesignerTests.cs (1)
87designMaskedTextBox.CutCopyMaskFormat.Should().Be(MaskFormat.IncludePrompt);
System.Windows.Forms.Tests (2)
MaskedTextBoxTests.cs (2)
322control.CutCopyMaskFormat.Should().Be(value); 328control.CutCopyMaskFormat.Should().Be(value);