[]
Adds a new user-defined name for the specified value, as a string, to the model.
void AddCustomName(string name, string value, int baseRow, int baseColumn, string comment)
Sub AddCustomName(name As String, value As String, baseRow As Integer, baseColumn As Integer, comment As String)
| Type | Name | Description |
|---|---|---|
| string | name | Name to add |
| string | value | Value for name, as a string |
| int | baseRow | Base row index for calculating relative row references in the value |
| int | baseColumn | Base column index for calculating relative column references in the value |
| string | comment |
Adds a new user-defined name for the specified value, as an expression, to the model.
void AddCustomName(string name, Expression value, string comment)
Sub AddCustomName(name As String, value As Expression, comment As String)
| Type | Name | Description |
|---|---|---|
| string | name | Name to add |
| Expression | value | Value for name, as expression |
| string | comment |