PowerTools SPREAD for Windows Forms 8.0J
ShowCell メソッド (SpreadView)


ビューポート行インデックス
ビューポート列インデックス
ビューポートの行インデックス
ビューポートの列インデックス
セルの新しい垂直位置
セルの新しい水平位置
指定したビューポートの指定したセルを指定した位置に移動します。
構文
'Declaration
 
Public Sub ShowCell( _
   ByVal rowViewportIndex As Integer, _
   ByVal columnViewportIndex As Integer, _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal verticalPosition As VerticalPosition, _
   ByVal horizontalPosition As HorizontalPosition _
) 
'使用法
 
Dim instance As SpreadView
Dim rowViewportIndex As Integer
Dim columnViewportIndex As Integer
Dim row As Integer
Dim column As Integer
Dim verticalPosition As VerticalPosition
Dim horizontalPosition As HorizontalPosition
 
instance.ShowCell(rowViewportIndex, columnViewportIndex, row, column, verticalPosition, horizontalPosition)

パラメータ

rowViewportIndex
ビューポート行インデックス
columnViewportIndex
ビューポート列インデックス
row
ビューポートの行インデックス
column
ビューポートの列インデックス
verticalPosition
セルの新しい垂直位置
horizontalPosition
セルの新しい水平位置
解説

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

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

FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
sv.AddViewport(0, 0);
sv.ShowCell(1, 1, 6, 4, FarPoint.Win.Spread.VerticalPosition.Center, FarPoint.Win.Spread.HorizontalPosition.Center);
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook
Dim hp As New FarPoint.Win.Spread.HorizontalPosition()
Dim vp As New FarPoint.Win.Spread.VerticalPosition()
sv.AddViewport(0, 0)
sv.ShowCell(1, 1, 6, 4, vp.Center, hp.Center)
参照

SpreadView クラス
SpreadView メンバ
ShowActiveCell メソッド
ShowColumn メソッド
ShowRow メソッド

開発者ガイド

スクロール位置

 

 


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