Version

ColScrollAction Enumeration

Enum to specify how to scroll a column scroll region.
Syntax
'Declaration
 
Public Enum ColScrollAction 
   Inherits System.Enum
public enum ColScrollAction : System.Enum 
Members
MemberDescription
Leftscroll all the way to the left
LineLeftscroll as if left arrow of the scroll bar was cliked
LineRightscroll as if right arrow of the scroll bar was clicked
PageLeftscroll one page to the left
PageRightscroll one page to the right
Rightscroll all the way to the right
Remarks

The ColScrollAction enum is used for specifying what kind of scroll action should be performed when calling ColScrollRegion.Scroll method.

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