The positioning parameters allow you to easily position elements
on the Canvas. For more background information see the Points and
Rects
explanation.
Each element is combined one after the other to produce a final
rectangle that defines the drawing area. For example the following
all produce the same output:
[VBScript]
DrawShape "rect", "Pos=10,10 Size = 80,80"
DrawShape "rect", "Rect = 10,10,90,90"
DrawShape "rect", "Rect=0,0,100,100 Inset=10"
DrawShape "rect", "Pos=0,0 Size = 80,80 Move=10,10"
Note: If you use no parameters the rect will default to that of
the canvas.
|
|
|