Hide New Objects Until Script is Done

When creating new objects is there anyway to hide them until the script is done and have them all of a sudden appear at the end?

there are several possible ways to do this, yes. What language are you using?

@Gijs - Python Script

for example

import rhinoscriptsyntax as rs
rs.EnableRedraw(False)
#do stuff here
rs.EnableRedraw(True)
2 Likes

Thanks!