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)
7982yield return new object[] { "abc", "abc", RichTextBoxFinds.MatchCase, 0 }; 7983yield return new object[] { "abc", "ABC", RichTextBoxFinds.MatchCase, -1 }; 8033yield return new object[] { "abc", "abc", 0, RichTextBoxFinds.MatchCase, 0 }; 8034yield return new object[] { "abc", "ABC", 0, RichTextBoxFinds.MatchCase, -1 }; 8093yield return new object[] { "abc", "abc", 0, end, RichTextBoxFinds.MatchCase, 0 }; 8094yield return new object[] { "abc", "ABC", 0, end, RichTextBoxFinds.MatchCase, -1 };