'Declaration Public Enum ColScrollAction Inherits System.Enum
public enum ColScrollAction : System.Enum
Member | Description |
---|---|
Left | scroll all the way to the left |
LineLeft | scroll as if left arrow of the scroll bar was cliked |
LineRight | scroll as if right arrow of the scroll bar was clicked |
PageLeft | scroll one page to the left |
PageRight | scroll one page to the right |
Right | scroll all the way to the right |
The ColScrollAction enum is used for specifying what kind of scroll action should be performed when calling ColScrollRegion.Scroll method.
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 ); }
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