MESCIUS SPREAD for ASP.NET 10.0J
GetCellType メソッド

セルの行インデックス
セルの列インデックス
指定した行と列のセルのセル型を取得します。
構文
'Declaration
 
Public Overridable Function GetCellType( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As ICellType
public virtual ICellType GetCellType( 
   int row,
   int column
)

パラメータ

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

戻り値の型

セル型を含むICellTypeオブジェクト
解説

注意: シートが数値データを含み、シートをExcelにエクスポートしようとしている場合、最適な結果を得るため任意の数値データをSpreadの通貨型、数値型(整数型)、またはパーセント型セルに設定します。

この例では、シートの先頭セルにButtonCellTypeを作成し、SheetViewオブジェクトを使用してその型をリストボックスに返します。
FarPoint.Web.Spread.SheetView sv = FpSpread1.ActiveSheetView;
sv.Cells[0, 0].CellType = new FarPoint.Web.Spread.ButtonCellType();
ListBox1.Items.Add(Convert.ToString(sv.GetCellType(0, 0)));
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
sv.Cells(0, 0).CellType = New FarPoint.Web.Spread.ButtonCellType()
ListBox1.Items.Add(Convert.ToString(sv.GetCellType(0, 0)))
参照

SheetView クラス
SheetView メンバ
ICellType インタフェース

開発者の手引き

セル型

 

 


© MESCIUS inc. All rights reserved.