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


セルの行インデックス
セルの列インデックス
シート上の指定したセルの複合(継承)セル型を取得します。
構文
'Declaration
 
Public Overridable Function GetCellType( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As ICellType
'使用法
 
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim value As ICellType
 
value = instance.GetCellType(row, column)
public virtual ICellType GetCellType( 
   int row,
   int column
)

パラメータ

row
セルの行インデックス
column
セルの列インデックス

戻り値の型

セル型を含むICellTypeオブジェクト
解説
これは、Cell、Row、またはColumnオブジェクトのCellTypeプロパティの値と同じであるとは限りません。
次のサンプルコードでは、このメンバを使用して、指定したセルのセル型を返しています。
fpSpread1.ActiveSheet.Cells[0, 0, 2, 2].CellType = new FarPoint.Win.Spread.CellType.ButtonCellType();
label1.Text = Convert.ToString(fpSpread1.ActiveSheet.GetCellType(1, 1));
FpSpread1.ActiveSheet.Cells(0, 0, 2, 2).CellType = New FarPoint.Win.Spread.CellType.ButtonCellType()
Label1.Text = Convert.ToString(FpSpread1.ActiveSheet.GetCellType(1, 1))
参照

SheetView クラス
SheetView メンバ
CellType プロパティ (Cell)
CellType プロパティ (Row)
CellType プロパティ (Column)

開発者ガイド

セル型

 

 


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