2 writes to _scrollBars
System.Windows.Forms (2)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (2)
458_scrollBars = ScrollBars.Both; 3604_scrollBars = value;
8 references to _scrollBars
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (2)
3578get => _scrollBars; 3584if (_scrollBars != value)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (6)
961if (_scrollBars is ScrollBars.Both or ScrollBars.Vertical) 9281bool allowHorizScrollbar = _scrollBars is ScrollBars.Both or ScrollBars.Horizontal; 9282bool allowVertScrollbar = _scrollBars is ScrollBars.Both or ScrollBars.Vertical; 10564bool allowHorizScrollbar = ((_scrollBars == ScrollBars.Both) || (_scrollBars == ScrollBars.Horizontal)) 10566bool allowVertScrollbar = _scrollBars is ScrollBars.Both or ScrollBars.Vertical;