PowerTools SPREAD for Windows Forms 8.0J
IsCellInView メソッド


ビューポート行のインデックス
ビューポート列のインデックス
指定したビューポート内の行インデックス
指定したビューポート内の列インデックス
指定した位置にあるセルが指定したビューに表示されているかどうかを返します。
構文
'Declaration
 
Public Function IsCellInView( _
   ByVal rowViewportIndex As Integer, _
   ByVal columnViewportIndex As Integer, _
   ByVal cellRowIndex As Integer, _
   ByVal cellColumnIndex As Integer _
) As Boolean
'使用法
 
Dim instance As FpSpread
Dim rowViewportIndex As Integer
Dim columnViewportIndex As Integer
Dim cellRowIndex As Integer
Dim cellColumnIndex As Integer
Dim value As Boolean
 
value = instance.IsCellInView(rowViewportIndex, columnViewportIndex, cellRowIndex, cellColumnIndex)
public bool IsCellInView( 
   int rowViewportIndex,
   int columnViewportIndex,
   int cellRowIndex,
   int cellColumnIndex
)

パラメータ

rowViewportIndex
ビューポート行のインデックス
columnViewportIndex
ビューポート列のインデックス
cellRowIndex
指定したビューポート内の行インデックス
cellColumnIndex
指定したビューポート内の列インデックス

戻り値の型

指定したインデックスにあるセルが表示されている場合は True、それ以外の場合は False
次のサンプル コードは、指定したセルを画面に表示します。
bool b;
b = fpSpread1.IsCellInView(0, 0, 20, 4);
if (!b) 
{
      fpSpread1.ShowCell(0, 0, 20, 4, FarPoint.Win.Spread.VerticalPosition.Center, FarPoint.Win.Spread.HorizontalPosition.Center);
}
Dim b As Boolean
b = fpSpread1.IsCellInView(0, 0, 20, 4)
If Not b Then
    fpSpread1.ShowCell(0, 0, 20, 4, FarPoint.Win.Spread.VerticalPosition.Center, FarPoint.Win.Spread.HorizontalPosition.Center)
End If
参照

FpSpread クラス
FpSpread メンバ

 

 


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