Constructs a new custom named expression.
Syntax
'Declaration
Public Function New( _
ByVal As System.String, _
ByVal As System.Integer, _
ByVal baseColumn As System.Integer, _
ByVal As CalcExpression _
)
'Usage
Dim name As System.String
Dim baseRow As System.Integer
Dim baseColumn As System.Integer
Dim expression As CalcExpression
Dim instance As New NameInfo(name, baseRow, baseColumn, expression)
public NameInfo(
System.string ,
System.int ,
System.int baseColumn,
CalcExpression
)
Parameters
- name
- The name of the custom named expression.
- baseRow
- The base row index of the custom named expression.
- baseColumn
- The base column index of the custom named expression.
- expression
- The calculate expression that is used to customize the named expression.
See Also