8 references to MatchCase
System.Windows.Forms (2)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (2)
1901
if ((options & RichTextBoxFinds.
MatchCase
) == RichTextBoxFinds.
MatchCase
)
System.Windows.Forms.Tests (6)
System\Windows\Forms\RichTextBoxTests.cs (6)
7982
yield return new object[] { "abc", "abc", RichTextBoxFinds.
MatchCase
, 0 };
7983
yield return new object[] { "abc", "ABC", RichTextBoxFinds.
MatchCase
, -1 };
8033
yield return new object[] { "abc", "abc", 0, RichTextBoxFinds.
MatchCase
, 0 };
8034
yield return new object[] { "abc", "ABC", 0, RichTextBoxFinds.
MatchCase
, -1 };
8093
yield return new object[] { "abc", "abc", 0, end, RichTextBoxFinds.
MatchCase
, 0 };
8094
yield return new object[] { "abc", "ABC", 0, end, RichTextBoxFinds.
MatchCase
, -1 };