'Declaration Public Enum RowScrollAction Inherits System.Enum
public enum RowScrollAction : System.Enum
Member | Description |
---|---|
Bottom | scroll all the way to the bottom of the row scroll region |
LineDown | scroll as if down arrow on the scroll bar was clicked |
LineUp | scroll as if up arrow on the scroll bar was clicked |
PageDown | scroll one page down |
PageUp | scroll one page up |
Top | scroll all the way to the top of the row scroll region |
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