MicroStation CONNECT Edition Help

Stop

The stop statement is used to improve the speed of design script execution by enabling the system to avoid unnecessary comparisons. When the stop statement is executed, the design script stops processing the current element. Any modifications to the element before the stop statement are performed.

Example:

if (type == ellipse) then       
	color = 4       
	stop 
endif