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