2 writes to _scrollBars
System.Windows.Forms (2)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (2)
458_scrollBars = ScrollBars.Both; 3602_scrollBars = value;
8 references to _scrollBars
System.Windows.Forms (8)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (2)
3576get => _scrollBars; 3582if (_scrollBars != value)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (6)
927if (_scrollBars is ScrollBars.Both or ScrollBars.Vertical) 8982bool allowHorizScrollbar = _scrollBars is ScrollBars.Both or ScrollBars.Horizontal; 8983bool allowVertScrollbar = _scrollBars is ScrollBars.Both or ScrollBars.Vertical; 10150bool allowHorizScrollbar = ((_scrollBars == ScrollBars.Both) || (_scrollBars == ScrollBars.Horizontal)) 10152bool allowVertScrollbar = _scrollBars is ScrollBars.Both or ScrollBars.Vertical;