12 references to VerticalScroll
System.Windows.Forms (5)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
18857if (orientation == ScrollOrientation.VerticalScroll) 26391OnScroll(scrollEventType, newScrolledOffRowCount - rowCount, newScrolledOffRowCount, ScrollOrientation.VerticalScroll);
System\Windows\Forms\Scrolling\ScrollableControl.cs (1)
1338WmOnScroll(ref m, oldValue, pos, ScrollOrientation.VerticalScroll);
System\Windows\Forms\Scrolling\ScrollBar.cs (2)
46_scrollOrientation = ScrollOrientation.VerticalScroll; 487if (_scrollOrientation == ScrollOrientation.VerticalScroll)
System.Windows.Forms.Tests (7)
System\Windows\Forms\ScrollBarTests.cs (3)
2580yield return new object[] { true, 100, 200, ScrollOrientation.VerticalScroll, new Size(10, 20), new Size(10, 40) }; 2581yield return new object[] { true, 200, 100, ScrollOrientation.VerticalScroll, new Size(10, 20), new Size(10, 10) }; 2584yield return new object[] { false, 100, 100, ScrollOrientation.VerticalScroll, new Size(10, 20), new Size(10, 20) };
System\Windows\Forms\ScrollEventArgsTests.cs (4)
42[InlineData(ScrollEventType.EndScroll, 0, ScrollOrientation.VerticalScroll)] 43[InlineData(ScrollEventType.LargeIncrement, 1, ScrollOrientation.VerticalScroll)] 56[InlineData(ScrollEventType.EndScroll, 0, 0, ScrollOrientation.VerticalScroll)] 57[InlineData(ScrollEventType.LargeIncrement, 1, 2, ScrollOrientation.VerticalScroll)]