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


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

パラメータ

relativeTo
相対参照の基準となる列
referenceStyle
参照スタイル

戻り値の型

この列を指定した参照スタイルで相対参照する String
例外
例外説明
System.ArgumentNullException列が指定されていないか無効です。有効なColumntオブジェクトを指定してください。
解説

ヘッダ列は参照できないので、常にString.Emptyを返します。

次のサンプルコードは、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(col2, FarPoint.Win.Spread.Model.ReferenceStyle.A1) + "," + col2.ToString(col1, 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(col2, FarPoint.Win.Spread.Model.ReferenceStyle.A1) + "," + col2.ToString(col1, FarPoint.Win.Spread.Model.ReferenceStyle.A1)
+ ")"
参照

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

 

 


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