PowerTools SPREAD for Windows Forms 8.0J
ToString(ReferenceStyle) メソッド


参照スタイル
この列を指定した参照スタイルで参照する文字列を取得します。
構文
'Declaration
 
Public Overloads Function ToString( _
   ByVal referenceStyle As ReferenceStyle _
) As String
'使用法
 
Dim instance As Column
Dim referenceStyle As ReferenceStyle
Dim value As String
 
value = instance.ToString(referenceStyle)
public string ToString( 
   ReferenceStyle referenceStyle
)

パラメータ

referenceStyle
参照スタイル

戻り値の型

この列を指定した参照スタイルで絶対参照する String
次のサンプルコードは、Formulaプロパティを使用して2つの値を合計し、その結果を該当するセルに配置します。
FarPoint.Win.Spread.Column col, col1, col2;
col = fpSpread1.ActiveSheet.Columns[0];
col.CellType = new FarPoint.Win.Spread.CellType.NumberCellType();
col1 = fpSpread1.ActiveSheet.Columns[2];
col2 = fpSpread1.ActiveSheet.Columns[3];
fpSpread1.ActiveSheet.Cells[2, 3].Value = 10;
fpSpread1.ActiveSheet.Cells[2, 2].Value = 10;
col.Formula = "SUM(" + col1.ToString(FarPoint.Win.Spread.Model.ReferenceStyle.A1) + "," + col2.ToString(FarPoint.Win.Spread.Model.ReferenceStyle.A1)
+ ")";
Dim col, col1, col2 As FarPoint.Win.Spread.Column
col = FpSpread1.ActiveSheet.Columns(0)
col.CellType = New FarPoint.Win.Spread.CellType.NumberCellType()
col1 = FpSpread1.ActiveSheet.Columns(2)
col2 = FpSpread1.ActiveSheet.Columns(3)
FpSpread1.ActiveSheet.Cells(2, 3).Value = 10
FpSpread1.ActiveSheet.Cells(2, 2).Value = 10
col.Formula = "SUM(" + col1.ToString(FarPoint.Win.Spread.Model.ReferenceStyle.A1) + "," + col2.ToString(FarPoint.Win.Spread.Model.ReferenceStyle.A1)
+ ")"
参照

Column クラス
Column メンバ
オーバーロード一覧

 

 


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