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


アクティブセルの新しい位置(Y座標)
アクティブセルの新しい位置(X座標)
アクティブセルをコンポーネント内の指定した位置に移動します。
構文
'Declaration
 
Public Sub ShowActiveCell( _
   ByVal verticalPosition As VerticalPosition, _
   ByVal horizontalPosition As HorizontalPosition _
) 
'使用法
 
Dim instance As FpSpread
Dim verticalPosition As VerticalPosition
Dim horizontalPosition As HorizontalPosition
 
instance.ShowActiveCell(verticalPosition, horizontalPosition)
public void ShowActiveCell( 
   VerticalPosition verticalPosition,
   HorizontalPosition horizontalPosition
)

パラメータ

verticalPosition
アクティブセルの新しい位置(Y座標)
horizontalPosition
アクティブセルの新しい位置(X座標)
解説

このメソッドは、アクティブセルが指定した表示位置に来るようにスプレッドシートをスクロールします。たとえば、アクティブセルをコンポーネント表示の中央に移動できます。

アクティブセルを設定するには、SetActiveCellメソッドを参照してください。

次のサンプルコードは、アクティブセルを指定した位置に移動します。
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.ActiveSheet.SetActiveCell(15, 15);
fpSpread1.ShowActiveCell(FarPoint.Win.Spread.VerticalPosition.Center, FarPoint.Win.Spread.HorizontalPosition.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.ActiveSheet.SetActiveCell(15, 15)
fpSpread1.ShowActiveCell(FarPoint.Win.Spread.VerticalPosition.Center, FarPoint.Win.Spread.HorizontalPosition.Center)
参照

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

開発者ガイド

スクロール位置
アクティブセル

 

 


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