6 references to TABSTOPS
System.Windows.Forms (2)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (2)
1186
if ((PFM.
TABSTOPS
& pf.dwMask) != 0)
1216
pf.dwMask = PFM.
TABSTOPS
;
System.Windows.Forms.Tests (4)
System\Windows\Forms\RichTextBoxTests.cs (4)
6215
yield return new object[] { PFM.
TABSTOPS
, 3, new int[] { 900, 600, -900 }, new int[] { 60, 40, -60 } };
6216
yield return new object[] { PFM.
TABSTOPS
, 1, new int[] { 900, 600, -900 }, new int[] { 60 } };
6217
yield return new object[] { PFM.
TABSTOPS
, 32, Enumerable.Repeat(900, 32).ToArray(), Enumerable.Repeat(60, 32).ToArray() };
6218
yield return new object[] { PFM.
TABSTOPS
| PFM.ALIGNMENT, 3, new int[] { 900, 600, -900 }, new int[] { 60, 40, -60 } };