[]
Creates a external variable.
ExternalVariable AddExternalVariable(string name, string formula)
Function AddExternalVariable(name As String, formula As String) As ExternalVariable
Type | Name | Description |
---|---|---|
string | name | A string value indicates the external variable name. |
string | formula | A string value indicates the associated formula. |
Type | Description |
---|---|
ExternalVariable | A ExternalVariable object indicates the new external variable. |
Creates a external variable.
T AddExternalVariable<T>(string name, string formula) where T : ExternalVariable, new()
Function AddExternalVariable(Of T As {ExternalVariable, New})(name As String, formula As String) As T
Type | Name | Description |
---|---|---|
string | name | A string value indicates the external variable name. |
string | formula | A string value indicates the associated formula. |
Type | Description |
---|---|
T | A <T> object indicates the new external variable. |
Name | Description |
---|---|
T | The external variable type that implement ExternalVariable. |
Creates a external variable.
bool AddExternalVariable(string name, ExternalVariable externalVariable, string formula = null)
Function AddExternalVariable(name As String, externalVariable As ExternalVariable, Optional formula As String = Nothing) As Boolean
Type | Name | Description |
---|---|---|
string | name | A string value indicates the external variable name. |
ExternalVariable | externalVariable | A ExternalVariable object indicates the external variable name to add. |
string | formula | A string value indicates the associated formula. |
Type | Description |
---|---|
bool |
|