10 references to Both
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (2)
458_scrollBars = ScrollBars.Both; 3570[DefaultValue(ScrollBars.Both)]
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (5)
928if (_scrollBars is ScrollBars.Both or ScrollBars.Vertical) 8984bool allowHorizScrollbar = _scrollBars is ScrollBars.Both or ScrollBars.Horizontal; 8985bool allowVertScrollbar = _scrollBars is ScrollBars.Both or ScrollBars.Vertical; 10152bool allowHorizScrollbar = ((_scrollBars == ScrollBars.Both) || (_scrollBars == ScrollBars.Horizontal)) 10154bool allowVertScrollbar = _scrollBars is ScrollBars.Both or ScrollBars.Vertical;
System\Windows\Forms\Dialogs\ThreadExceptionDialog.cs (1)
313_details.ScrollBars = ScrollBars.Both;
System.Windows.Forms.Design (1)
System\ComponentModel\Design\ByteViewer.cs (1)
459ScrollBars = ScrollBars.Both,
WinFormsControlsTest (1)
ScrollableControls.Designer.cs (1)
374textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;