'宣言 Public Sub ScrollHeaderIntoView( _ ByVal header As HeaderBase, _ ByVal leftAlign As Boolean _ )
public void ScrollHeaderIntoView( HeaderBase header, bool leftAlign )
このメソッドを起動して、列のスクロール領域で列またはグループ ヘッダーが表示可能であることを保証します。
ヘッダーのスクロール領域の表示可能な領域にすでに列がある場合、このメソッドはスクロールを実行しません。
このメソッドを起動する結果として colscrollregion がスクロールされると、列スクロール領域の Position プロパティの値が変更され、BeforeColRegionScroll イベントが生成されます。
Scroll、ScrollCellIntoView、ScrollColIntoView および ScrollGroupIntoView メソッドは、colscrollregion の表示可能な領域にオブジェクトをスクロールするために起動することもできます。
Imports Infragistics.Shared Imports Infragistics.Win Imports Infragistics.Win.UltraWinGrid Private Sub Button132_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles button132.Click Dim column As UltraGridColumn = Me.UltraGrid1.DisplayLayout.Bands(0).Columns("Fax") ' Scroll the column into view by calling ScrollHeaderIntoView and passing in ' the column's header. You can also pass in group headers to scroll groups. Me.UltraGrid1.ActiveColScrollRegion.ScrollHeaderIntoView(column.Header, False) End Sub
using Infragistics.Shared; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; using System.Diagnostics; private void button132_Click(object sender, System.EventArgs e) { UltraGridColumn column = this.ultraGrid1.DisplayLayout.Bands[0].Columns["Fax"]; // Scroll the column into view by calling ScrollHeaderIntoView and passing in // the column's header. You can also pass in group headers to scroll groups. this.ultraGrid1.ActiveColScrollRegion.ScrollHeaderIntoView( column.Header, false ); }