AddModelScopeCustomName(String,String,Int32,Int32,String) Method
In This Topic
Adds a custom name to the model scope.
Syntax
'Declaration
Public Overloads Sub AddModelScopeCustomName( _
ByVal As String, _
ByVal As String, _
ByVal As Integer, _
ByVal baseColumn As Integer, _
ByVal As String _
)
'Usage
Dim instance As DefaultSheetDataModel
Dim name As String
Dim value As String
Dim baseRow As Integer
Dim baseColumn As Integer
Dim comment As String
instance.AddModelScopeCustomName(name, value, baseRow, baseColumn, comment)
public void AddModelScopeCustomName(
string ,
string ,
int ,
int baseColumn,
string
)
Parameters
- name
- Name of the expression to add (used in formulas to reference the value)
- value
- Value of the expression (used in formulas for evaluation)
- baseRow
- Base row index for computing relative cell references
- baseColumn
- Base column index for computing relative cell references
- comment
- Comment of the expression (used in formulas to display information)
See Also