Rik's Treehouse > Babbling in Binary > My Software > Orphanware > R2DToo > R2DToo Help > Automation > UiMinimal

UiMinimal

Declaration
Parameters
Return Value
Remarks
Example

Declaration

object.UiMinimal()
Top of page

Parameters

object
Required. Always the name of a R2DToo.FrontEnd object.
Top of page

Return Value

None. Top of page

Remarks

Sets all user-interface options such that the simulation can run as fast as possible, with the least overhead. This includes hiding the
Time Series and Inspect Sites forms and the view portal, and setting the framerate to slow. Top of page

Example

' [VBScript] ' load Dim R2DToo Set R2DToo = Wscript.CreateObject("R2DToo.FrontEnd") ' set to run as fast as possible R2DToo.UiMinimal() ' run... R2DToo.SimRun() ' ...wait for 60 seconds... WScript.Sleep(60000) ' ...stop R2DToo.SimPause() ' unload Set R2DToo = nothing
Top of page
[Rik's Office Hours] [Contact Rik]
Last updated: Fri Apr 30 2004, 1:49pm