Description
Returns the child results object associated with this output. After a simulation, the results object contains statistics and other results associated with the output.
Syntax
object.Results(Optional whichSim as Long = 1)
Arguments
whichSim (Optional Long) – the number of the simulation to retrieve results for. If left blank, the results will be retrieved for the first simulation.
Return Value
(RDKResults) – the results object.
Example
'Get the results of the first simulation (using the default method)
Set outputResult = RDKApp.Outputs("myOutput").Result
'Get the results of the third simulation
Set outputResult = RDKApp.Outputs("myOutput").Results(3)