Differences
This shows you the differences between two versions of the page.
| en:software:qview:qview_6:qcl_library:vi10initbuffer [2017/02/27 17:23] – created qem103 | en:software:qview:qview_6:qcl_library:vi10initbuffer [2019/08/29 17:01] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== VI10InitBuffer ====== | ||
| + | |||
| + | **V = **// | ||
| + | |||
| + | **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/ | ||
| + | | IN | ARRSYS /\\ ARRGBL | ||
| + | |||
| + | === Example === | ||
| + | |||
| + | //TASK_00// | ||
| + | <code QCl> | ||
| + | MAIN: | ||
| + | IF gfIniz | ||
| + | VI10InitBuffer (awBuffer) | ||
| + | gfIniz = 0 | ||
| + | ENDIF | ||
| + | END | ||
| + | </ | ||
| + | |||
| + | === Note === | ||