StopDrawing()

Syntax

StopDrawing()
Description
Once all the needed graphics operations (started with StartDrawing()) have been performed, this function must be called to finish the drawing and free all associated resources.

Typically, a normal drawing sequence would look like:
  If StartDrawing(WindowOutput(0))
    Box(10,10,20,20)
    Line(30,50,100,100)
    ....
    StopDrawing() 
  EndIf

Supported OS

All

<- StartDrawing() - 2DDrawing Index - TextHeight() ->