VI10InitBuffer

V = Vector

I = Image

Function that is used to manage the Vector Image feature (object that resides on some versions of Q paint).

The VI10InitBuffer function has the task to initialize and/or flush the buffer and delete any errors from the previous design section.
Before you start building the buffer content, if you want to start a new drawing, you must call this function.

IMPLEMENTATION

VI10InitBuffer (awBuffer)

Parameters:

IN/OUTVARIABLE TYPEEXAMPLE NAMEDIM
IN ARRSYS /
ARRGBL
awBuffer W Array that serves as a buffer for instructions/data

Example

TASK_00

MAIN:
      IF gfIniz
            VI10InitBuffer (awBuffer)
            gfIniz = 0
      ENDIF
END

Note