PowerTools SPREAD for Windows Forms 8.0J
ShowRow メソッド (FpSpread)


この行を持つビューポートの行インデックス。
移動する行インデックス。
行の新しい垂直位置。
指定したビューポートの行をコンポーネント内の指定した位置に移動します。
構文
'Declaration
 
Public Sub ShowRow( _
   ByVal rowViewportIndex As Integer, _
   ByVal row As Integer, _
   ByVal verticalPosition As VerticalPosition _
) 
'使用法
 
Dim instance As FpSpread
Dim rowViewportIndex As Integer
Dim row As Integer
Dim verticalPosition As VerticalPosition
 
instance.ShowRow(rowViewportIndex, row, verticalPosition)
public void ShowRow( 
   int rowViewportIndex,
   int row,
   VerticalPosition verticalPosition
)

パラメータ

rowViewportIndex
この行を持つビューポートの行インデックス。
row
移動する行インデックス。
verticalPosition
行の新しい垂直位置。
解説

このメソッドは、指定したビューポートの指定した行が指定した位置に来るようにスプレッドシートをスクロールします。

このメソッドを呼び出しても、アクティブセルの位置または位置設定は変わりません。

次のサンプルコードは、指定したビューポートの指定した行を指定した位置に移動します。
FarPoint.Win.Spread.FpSpread fpSpread1 = new FarPoint.Win.Spread.FpSpread();
FarPoint.Win.Spread.SheetView shv = new FarPoint.Win.Spread.SheetView();
fpSpread1.Location = new Point(10, 10);
fpSpread1.Height = 200;
fpSpread1.Width = 400;
Controls.Add(fpSpread1);
fpSpread1.Sheets.Add(shv);
fpSpread1.AddViewport(0, 0);
fpSpread1.ShowRow(0, 15, FarPoint.Win.Spread.VerticalPosition.Center);
Dim fpSpread1 As New FarPoint.Win.Spread.FpSpread()
Dim shv As New FarPoint.Win.Spread.SheetView()
fpSpread1.Location = New Point(10, 10)
fpSpread1.Height = 200
fpSpread1.Width = 400
Controls.Add(fpSpread1)
fpSpread1.Sheets.Add(shv)
fpSpread1.AddViewport(0, 0)
fpSpread1.ShowRow(0, 15, FarPoint.Win.Spread.VerticalPosition.Center)
参照

FpSpread クラス
FpSpread メンバ
VerticalPosition 列挙体

開発者ガイド

スクロール位置

 

 


© 2004-2015, GrapeCity inc. All rights reserved.