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