2 writes to scrollBars
System.Windows.Forms (2)
winforms\Managed\System\WinForms\DataGridView.cs (2)
500this.scrollBars = ScrollBars.Both; 4593this.scrollBars = value;
12 references to scrollBars
System.Windows.Forms (12)
winforms\Managed\System\WinForms\DataGridView.cs (2)
4564return this.scrollBars; 4574if (this.scrollBars != value)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (10)
934if ((this.scrollBars == ScrollBars.Both || this.scrollBars == ScrollBars.Vertical) /*&& 9068bool allowHorizScrollbar = (this.scrollBars == ScrollBars.Both) || (this.scrollBars == ScrollBars.Horizontal); 9069bool allowVertScrollbar = (this.scrollBars == ScrollBars.Both) || (this.scrollBars == ScrollBars.Vertical); 10327bool allowHorizScrollbar = ((this.scrollBars == ScrollBars.Both) || (this.scrollBars == ScrollBars.Horizontal)) && 10329bool allowVertScrollbar = (this.scrollBars == ScrollBars.Both) || (this.scrollBars == ScrollBars.Vertical);