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