8 references to MatchCase
System.Windows.Forms (2)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (2)
1901if ((options & RichTextBoxFinds.MatchCase) == RichTextBoxFinds.MatchCase)
System.Windows.Forms.Tests (6)
System\Windows\Forms\RichTextBoxTests.cs (6)
7984yield return new object[] { "abc", "abc", RichTextBoxFinds.MatchCase, 0 }; 7985yield return new object[] { "abc", "ABC", RichTextBoxFinds.MatchCase, -1 }; 8035yield return new object[] { "abc", "abc", 0, RichTextBoxFinds.MatchCase, 0 }; 8036yield return new object[] { "abc", "ABC", 0, RichTextBoxFinds.MatchCase, -1 }; 8095yield return new object[] { "abc", "abc", 0, end, RichTextBoxFinds.MatchCase, 0 }; 8096yield return new object[] { "abc", "ABC", 0, end, RichTextBoxFinds.MatchCase, -1 };