Differences
This shows you the differences between two versions of the page.
en:software:qview:qview_6:qcl_library:vi10waitbufferreadyusingend [2017/02/27 17:43] – created qem103 | en:software:qview:qview_6:qcl_library:vi10waitbufferreadyusingend [2019/08/29 17:01] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== VI10WaitBufferReadyUsingEND ====== | ||
+ | |||
+ | **V = **// | ||
+ | |||
+ | **I = **//Image// | ||
+ | |||
+ | Function that is used to manage the Vector Image feature (object that resides on some versions of Qpaint). | ||
+ | |||
+ | The VI10WaitBufferReadyUsingEND function is used to wait for the conclusion of the design phase was started, __in a time task__.\\ | ||
+ | In case the drawing procedure is not complete, when you invoke this function, the task in time is stopped and you move on to the next task. In the next cycle the timed task will start over from the first statement. | ||
+ | |||
+ | ===== IMPLEMENTATION ===== | ||
+ | |||
+ | **VI10WaitBufferReadyUsingEND (awBuffer)** | ||
+ | |||
+ | Parameters: | ||
+ | |||
+ | ^IN/ | ||
+ | | IN | ARRSYS /\\ ARRGBL | ||
+ | |||
+ | === Example === | ||
+ | |||
+ | // | ||
+ | <code QCL> | ||
+ | MAIN: | ||
+ | IF gbSequenza EQ 1 | ||
+ | | ||
+ | | ||
+ | ENDIF | ||
+ | IF gbSequenza EQ 2 | ||
+ | | ||
+ | | ||
+ | ENDIF | ||
+ | IF gbSequenza EQ 3 | ||
+ | | ||
+ | | ||
+ | ENDIF | ||
+ | .... | ||
+ | .... | ||
+ | END | ||
+ | </ | ||
+ | |||
+ | === Note === | ||
+ | |||
+ | * The function can fail the task and in the next cycle, restart from the first statement. | ||