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