Enables or disables Rhino's automatic file saving mechanism.
rhinoscriptsyntax.EnableAutosave( enable=True )
rhinoscript.application.EnableAutosave( enable=True )
enable |
Optional. Boolean. The autosave state. If omitted, automatic saving is enabled (True). |
Boolean |
The previous autosave state. |
import rhinoscriptsyntax as rs
prevstate = rs.EnableAutosave()