18 references to ScrollOrientation
System.Windows.Forms (18)
System\Windows\Forms\Controls\DataGridView\DataGridView.cs (1)
2776
OnScroll(scrollEventType, _horizontalOffset + change, _horizontalOffset,
ScrollOrientation
.HorizontalScroll);
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (5)
16776
private void InvalidateGridFocusOnScroll(int change,
ScrollOrientation
orientation)
16785
if (orientation ==
ScrollOrientation
.HorizontalScroll)
18841
private void OnScroll(ScrollEventType scrollEventType, int oldValue, int newValue,
ScrollOrientation
orientation)
18851
if (orientation ==
ScrollOrientation
.VerticalScroll)
26382
OnScroll(scrollEventType, newScrolledOffRowCount - rowCount, newScrolledOffRowCount,
ScrollOrientation
.VerticalScroll);
System\Windows\Forms\Scrolling\ScrollableControl.cs (3)
1336
WmOnScroll(ref m, oldValue, pos,
ScrollOrientation
.VerticalScroll);
1428
WmOnScroll(ref m, oldValue, pos,
ScrollOrientation
.HorizontalScroll);
1435
private void WmOnScroll(ref Message m, int oldValue, int value,
ScrollOrientation
scrollOrientation)
System\Windows\Forms\Scrolling\ScrollBar.cs (4)
26
private readonly
ScrollOrientation
_scrollOrientation;
41
?
ScrollOrientation
.VerticalScroll
42
:
ScrollOrientation
.HorizontalScroll;
480
if (_scrollOrientation ==
ScrollOrientation
.VerticalScroll)
System\Windows\Forms\Scrolling\ScrollBar.ScrollBarFirstPageButtonAccessibleObject.cs (1)
30
return OwningScrollBar._scrollOrientation ==
ScrollOrientation
.HorizontalScroll
System\Windows\Forms\Scrolling\ScrollBar.ScrollBarLastPageButtonAccessibleObject.cs (1)
30
return OwningScrollBar._scrollOrientation ==
ScrollOrientation
.HorizontalScroll
System\Windows\Forms\Scrolling\ScrollEventArgs.cs (3)
25
public ScrollEventArgs(ScrollEventType type, int newValue,
ScrollOrientation
scroll)
40
public ScrollEventArgs(ScrollEventType type, int oldValue, int newValue,
ScrollOrientation
scroll)
66
public
ScrollOrientation
ScrollOrientation { get; }