Description
Assigns or retrieves the current value of the output during a simulation. This is the default property of an output object and thus does not need to be explicitly written in code.
Syntax
object.Value
Arguments
None.
Return Value
(Double) - The value of an output during a simulation.
Example
'The following two lines are the same:
RDKApp.Outputs("Profit").Value = Revenue - Cost
RDKApp.Outputs("Profit") = Revenue - Cost