[]
Adds a named expression to the model for use in formulas.
public void AddCustomName(string name, string value, int baseRow, int baseColumn)
Public Sub AddCustomName(name As String, value As String, baseRow As Integer, baseColumn As Integer)
Type | Name | Description |
---|---|---|
string | name | Name of the expression to add (used in formulas to reference the value) |
string | value | Value of the expression (used in formulas for evaluation) |
int | baseRow | Base row index for computing relative cell references |
int | baseColumn | Base column index for computing relative cell references |
Adds a named expression to the model for use in formulas.
public void AddCustomName(string name, Expression value)
Public Sub AddCustomName(name As String, value As Expression)
Type | Name | Description |
---|---|---|
string | name | Name of the expression to add (used in formulas to reference the value) |
Expression | value | Expression object to add |