1 write to AcceptsTab
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
270set { TextBox.AcceptsTab = value; }
4 references to AcceptsTab
System.Windows.Forms (4)
winforms\Managed\System\WinForms\RichTextBox.cs (1)
3711m.Result = (IntPtr)((AcceptsTab) ? unchecked( (int) (long)m.Result) | NativeMethods.DLGC_WANTTAB : unchecked( (int) (long)m.Result) & ~NativeMethods.DLGC_WANTTAB);
winforms\Managed\System\WinForms\TextBoxBase.cs (2)
1603if (keyCode == Keys.Tab && this.AcceptsTab && (keyData & Keys.Control) != 0) { 2227if (AcceptsTab) {
winforms\Managed\System\WinForms\ToolStripTextBox.cs (1)
269get { return TextBox.AcceptsTab; }