Version

RowScrollAction Enumeration

Enum to specify how to scroll a row scroll region.
Syntax
'Declaration
 
Public Enum RowScrollAction 
   Inherits System.Enum
public enum RowScrollAction : System.Enum 
Members
MemberDescription
Bottomscroll all the way to the bottom of the row scroll region
LineDownscroll as if down arrow on the scroll bar was clicked
LineUpscroll as if up arrow on the scroll bar was clicked
PageDownscroll one page down
PageUpscroll one page up
Topscroll all the way to the top of the row scroll region
Example
Following code scrolls the active row-scroll-region one page down and active col-scroll-region one line to the right.

Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid

  Private Sub Button134_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button134.Click

      ' Scroll one page down.
      Me.UltraGrid1.ActiveRowScrollRegion.Scroll(RowScrollAction.PageDown)

      ' Scroll one line to the right.
      Me.UltraGrid1.ActiveColScrollRegion.Scroll(ColScrollAction.LineRight)

  End Sub
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;

private void button134_Click(object sender, System.EventArgs e)
{

	// Scroll one page down.
	this.ultraGrid1.ActiveRowScrollRegion.Scroll( RowScrollAction.PageDown );

	// Scroll one line to the right.
	this.ultraGrid1.ActiveColScrollRegion.Scroll( ColScrollAction.LineRight );

}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also