27 references to VerticalScroll
System.Windows.Forms (27)
winforms\Managed\System\WinForms\ScrollableControl.cs (26)
241if (VScroll || VerticalScroll.Visible) { 646if (!AutoScroll && this.VerticalScroll.visible == true) { 647displayRect = new Rectangle(displayRect.X, displayRect.Y, this.displayRect.Width, this.VerticalScroll.Maximum); 1112VerticalScroll.visible = true; 1116ResetScrollProperties(VerticalScroll); 1251if (!VerticalScroll.maximumSetExternally) { 1252VerticalScroll.maximum = displayRect.Height-1; 1254if (!VerticalScroll.largeChangeSetExternally) { 1255VerticalScroll.largeChange = ClientRectangle.Height; 1257if (!VerticalScroll.smallChangeSetExternally) { 1258VerticalScroll.smallChange = 5; 1260if (-displayRect.Y >= VerticalScroll.minimum && -displayRect.Y < VerticalScroll.maximum) { 1261VerticalScroll.value = -displayRect.Y; 1263VerticalScroll.UpdateScrollInfo (); 1273if (this.VerticalScroll.Visible) { 1274VerticalScroll.Value = -displayRect.Y; 1277ResetScrollProperties(VerticalScroll); 1319maxPos = this.VerticalScroll.Maximum; 1329pos-=VerticalScroll.SmallChange; 1336if (pos < maxPos-VerticalScroll.SmallChange) { 1337pos+=VerticalScroll.SmallChange; 1344if (pos > VerticalScroll.LargeChange) { 1345pos-=VerticalScroll.LargeChange; 1352if (pos < maxPos-VerticalScroll.LargeChange) { 1353pos+=VerticalScroll.LargeChange;
winforms\Managed\System\WinForms\ToolStrip.cs (1)
1911return base.VerticalScroll;