PowerTools SPREAD for ASP.NET 8.0J
AddCustomName(String,Expression) メソッド

追加する名前
名前の値(式)
式として指定した値の新しいユーザー定義名をモデルに追加します。
構文
'Declaration
 
Overloads Sub AddCustomName( _
   ByVal name As String, _
   ByVal value As Expression _
) 
void AddCustomName( 
   string name,
   Expression value
)

パラメータ

name
追加する名前
value
名前の値(式)
FarPoint.Web.Spread.Model.ICustomNameSupport cns; 
cns = (FarPoint.Web.Spread.Model.ICustomNameSupport)FpSpread1.ActiveSheetView.DataModel; 
cns.AddCustomName("ALPHA", new FarPoint.CalcEngine.DoubleExpression(20)); 
FpSpread1.ActiveSheetView.SetFormula(1, 1, "ALPHA * 20");
Dim cns As FarPoint.Web.Spread.Model.ICustomNameSupport
cns = FpSpread1.ActiveSheetView.DataModel
cns.AddCustomName("ALPHA", New FarPoint.CalcEngine.DoubleExpression(20))
FpSpread1.ActiveSheetView.SetFormula(1, 1, "ALPHA * 20")
参照

ICustomNameSupport インタフェース
ICustomNameSupport メンバ
オーバーロード一覧

 

 


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