WorkspaceValue()

Returns the value of the specified workspace value name. If workspace value does not exist, error is raised.

Syntax

  • WorkspaceValue(name, default)
  • name: name of workspace value
  • default: default value

WorkspaceValue(string settingName)

Returns numeric value of the specified workspace value name.  If workspace value does not exist, null value is returned

Example

WorkspaceValue("Well Radius")

 

WorkspaceValue(string settingName, defaultValue)

Returns numeric value of the specified workspace value name.  If workspace value does not exist, the specified default value is returned.

Example

WorkspaceValue("Well Radius", 200)
WorkspaceValue("Well Radius", Empty)

 

WorkspaceValue(string settingName, defaultValue, string unitName)

Returns numeric value of the specified workspace value name in specified unit.  If workspace value does not exist, the specified default value is returned.  When workspace value and requested unites are different, the workspace value is converted to requested unit.

Example

WorkspaceValue("Well Radius", 200, "m")