Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinGrid
PrivateSub Button134_Click(ByVal sender AsObject, 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
'宣言
Public Enum ColScrollAction
Inherits System.Enum
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinGrid;
using System.Diagnostics;
privatevoid 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 );
}
'宣言
Public Enum ColScrollAction
Inherits System.Enum