PowerTools SPREAD for ASP.NET 8.0J
GetFormatter メソッド

セルの行インデックス
セルの列インデックス
指定した行と列のセルの書式設定に使用されるフォーマッタを取得します。
構文
'Declaration
 
Public Overridable Function GetFormatter( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As IFormatter
public virtual IFormatter GetFormatter( 
   int row,
   int column
)

パラメータ

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

戻り値の型

フォーマッタを表すIFormatterオブジェクト
この例では、指定したセルのフォーマッタを取得します。
FarPoint.Web.Spread.SheetView sv;
FarPoint.Web.Spread.Renderer.IFormatter fmttr;
sv = FpSpread1.ActiveSheetView;
fmttr = sv.GetFormatter(0, 0);
Response.Write("The formatter for the cell is a " + Convert.ToString(fmttr));
Dim sv As FarPoint.Web.Spread.SheetView
Dim fmttr As FarPoint.Web.Spread.Renderer.IFormatter
sv = FpSpread1.ActiveSheetView
fmttr = sv.GetFormatter(0, 0)
Response.Write("The formatter for the cell is a " & Convert.ToString(fmttr))
参照

SheetView クラス
SheetView メンバ
BaseRenderer クラス

 

 


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