17 references to ScrollOrientation
System.Windows.Forms (17)
winforms\Managed\System\WinForms\DataGridView.cs (1)
3476OnScroll(scrollEventType, this.horizontalOffset + change, this.horizontalOffset, ScrollOrientation.HorizontalScroll);
winforms\Managed\System\WinForms\DataGridViewMethods.cs (5)
17227private void InvalidateGridFocusOnScroll(int change, ScrollOrientation orientation) 17236if (orientation == ScrollOrientation.HorizontalScroll) 19383private void OnScroll(ScrollEventType scrollEventType, int oldValue, int newValue, ScrollOrientation orientation) 19392if (ScrollOrientation.VerticalScroll == orientation) 26487OnScroll(scrollEventType, newScrolledOffRowCount - rowCount, newScrolledOffRowCount, ScrollOrientation.VerticalScroll);
winforms\Managed\System\WinForms\ScrollableControl.cs (3)
1373WmOnScroll(ref m, oldValue, pos, ScrollOrientation.VerticalScroll); 1448WmOnScroll(ref m, oldValue, pos, ScrollOrientation.HorizontalScroll); 1456private void WmOnScroll(ref Message m, int oldValue, int value, ScrollOrientation scrollOrientation) {
winforms\Managed\System\WinForms\ScrollBar.cs (4)
46private ScrollOrientation scrollOrientation; 68scrollOrientation = ScrollOrientation.VerticalScroll; 72scrollOrientation = ScrollOrientation.HorizontalScroll; 670if (scrollOrientation == ScrollOrientation.VerticalScroll) {
winforms\Managed\System\WinForms\ScrollEvent.cs (4)
26private ScrollOrientation scrollOrientation; 48public ScrollEventArgs(ScrollEventType type, int newValue, ScrollOrientation scroll) { 64public ScrollEventArgs(ScrollEventType type, int oldValue, int newValue, ScrollOrientation scroll) { 78public ScrollOrientation ScrollOrientation {