|
|
|
|
|
- Operating mode
- Drawing in Browser code
dDisplay (Function) In french: dAffiche Displays the drawing in the Image control. dStartDrawing(IMG_Image, dDisplayManual) FOR i = 1 TO 1000 dLine(0, i, 100, i) END dDisplay()
Remarks Operating mode In browser code, transferring the drawing into the image can be quite long (several drawing functions will be used). To optimize the drawing in the image, the drawing can be displayed once the drawing functions have been used. To do so, simply: - Start drawing with dStartDrawing by using the dDisplayManual constant.
- Use the drawing functions to create the drawing.
- Use dDisplay to display the drawing in the image.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|