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)
7984
yield return new object[] { "abc", "abc", RichTextBoxFinds.
MatchCase
, 0 };
7985
yield return new object[] { "abc", "ABC", RichTextBoxFinds.
MatchCase
, -1 };
8035
yield return new object[] { "abc", "abc", 0, RichTextBoxFinds.
MatchCase
, 0 };
8036
yield return new object[] { "abc", "ABC", 0, RichTextBoxFinds.
MatchCase
, -1 };
8095
yield return new object[] { "abc", "abc", 0, end, RichTextBoxFinds.
MatchCase
, 0 };
8096
yield return new object[] { "abc", "ABC", 0, end, RichTextBoxFinds.
MatchCase
, -1 };