Spread Windows Forms 9.0 Product Documentation
AddModelScopeCustomName(String,Expression,String) Method
Example 


Name of the expression to add (used in formulas to reference the value)
Expression object to add
Comment of custom name to add
Adds a named expression to the model scope for use in formulas.
Syntax
'Declaration
 
Public Overloads Sub AddModelScopeCustomName( _
   ByVal name As String, _
   ByVal value As Expression, _
   ByVal comment As String _
) 
'Usage
 
Dim instance As DefaultSheetDataModel
Dim name As String
Dim value As Expression
Dim comment As String
 
instance.AddModelScopeCustomName(name, value, comment)
public void AddModelScopeCustomName( 
   string name,
   Expression value,
   string comment
)

Parameters

name
Name of the expression to add (used in formulas to reference the value)
value
Expression object to add
comment
Comment of custom name to add
Example
This example uses the AddModelScopeCustomName method.
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5);
dataModel.AddModelScopeCustomName("TWICESUM", new FarPoint.CalcEngine.DoubleExpression(10), "test");
dataModel.SetFormula(1, 1, "TWICESUM");
fpSpread1.ActiveSheet.Models.Data = dataModel;
//dataModel.RemoveModelScopeCustomName("TWICESUM");
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(10, 10)
dataModel.AddModelScopeCustomName("TWICESUM", New FarPoint.CalcEngine.DoubleExpression(10), "test")
dataModel.SetFormula(1, 1, "TWICESUM")
FpSpread1.ActiveSheet.Models.Data = dataModel
'dataModel.RemoveModelScopeCustomName("TWICESUM")
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

DefaultSheetDataModel Class
DefaultSheetDataModel Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.