MESCIUS SPREAD for ASP.NET 10.0J
ToString(ReferenceStyle) メソッド

セル参照のスタイル
このセルを指定した参照スタイルで絶対参照する文字列を取得します。
構文
'Declaration
 
Public Overloads Function ToString( _
   ByVal referenceStyle As ReferenceStyle _
) As String
public string ToString( 
   ReferenceStyle referenceStyle
)

パラメータ

referenceStyle
セル参照のスタイル

戻り値の型

このセルを指定した参照スタイルで絶対参照するString
この例では、Cellオブジェクトを作成し、数式プロパティを使用して、2つのセルの値を加算します。
FarPoint.Web.Spread.Cell acell, mycell, urcell;
acell = fpSpread1.ActiveSheetView.Cells[0, 0];
mycell = fpSpread1.ActiveSheetView.Cells[2, 2];
urcell = fpSpread1.ActiveSheetView.Cells[2, 3];
fpSpread1.ActiveSheetView.Cells[2, 2].Value = 10;
fpSpread1.ActiveSheetView.Cells[2, 3].Value = 10;
acell.Formula = "SUM(" + mycell.ToString(FarPoint.Web.Spread.Model.ReferenceStyle.A1) + "," + urcell.ToString(FarPoint.Web.Spread.Model.ReferenceStyle.A1)
+ ")";
Dim acell, mycell, urcell As FarPoint.Web.Spread.Cell
acell = FpSpread1.ActiveSheetView.Cells(0, 0)
mycell = FpSpread1.ActiveSheetView.Cells(2, 2)
urcell = FpSpread1.ActiveSheetView.Cells(2, 3)
FpSpread1.ActiveSheetView.Cells(2, 3).Value = 10
FpSpread1.ActiveSheetView.Cells(2, 2).Value = 10
acell.Formula = "SUM(" + mycell.ToString(FarPoint.Web.Spread.Model.ReferenceStyle.A1) + "," + urcell.ToString(FarPoint.Web.Spread.Model.ReferenceStyle.A1)
+ ")"
参照

Cell クラス
Cell メンバ
オーバーロード一覧
ReferenceStyle 列挙体

 

 


© MESCIUS inc. All rights reserved.