PowerTools SPREAD for Windows Forms 8.0J
ReferenceStyle プロパティ (SheetView)


このシートのセルに含まれる数式で使用される、セルと範囲の参照のスタイルを取得または設定します。
構文
'Declaration
 
Public Property ReferenceStyle As ReferenceStyle
'使用法
 
Dim instance As SheetView
Dim value As ReferenceStyle
 
instance.ReferenceStyle = value
 
value = instance.ReferenceStyle
public ReferenceStyle ReferenceStyle {get; set;}

プロパティ値

セル参照スタイルを決定する ReferenceStyle 設定

解説

数式の詳細については、「関数リファレンス」を参照してください。

次のサンプルコードは、数式を表すためにシートによって使用される参照スタイルを設定します。
fpSpread1.ActiveSheet.Iteration = true;
fpSpread1.ActiveSheet.SetValue(0, 1, 20);
fpSpread1.ActiveSheet.MaximumIterations = 5;
fpSpread1.ActiveSheet.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1;
fpSpread1.ActiveSheet.SetFormula(0, 0, "R1C2+R1C3");
fpSpread1.ActiveSheet.SetFormula(0, 2, "R1C1*3");
FpSpread1.ActiveSheet.Iteration = True
FpSpread1.ActiveSheet.SetValue(0, 1, 20)
FpSpread1.ActiveSheet.MaximumIterations = 5
FpSpread1.ActiveSheet.ReferenceStyle = FarPoint.Win.Spread.Model.ReferenceStyle.R1C1
FpSpread1.ActiveSheet.SetFormula(0, 0, "R1C2+R1C3")
FpSpread1.ActiveSheet.SetFormula(0, 2, "R1C1*3")
参照

SheetView クラス
SheetView メンバ

開発者ガイド

「関数リファレンス」

 

 


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