Click to expand/collapse this hidden textLine(X1,Y1,X2,Y2:number);

Procedure

EscapeE only.

LINE procedure draws a line from X1,Y1 to X2,Y2 using the the current PEN and COLOR, see below.

Example Line example

Click to expand/collapse this hidden textColor(Red,Green,Blue: number);
Colour(Red,Green,Blue: number);

Procedure

EscapeE only.

COLOR procedure (or the alternative spelling COLOUR) specifies  a color for TEXT and LINE drawing.
RED, GREEN and BLUE may take values >=0, <=255 in decimal or >=$00, <=$FF in hexadecimal.

Example COLOR(255,128,0) would be orange. (Equivalent to COLOR($FF,$80,$00) in Hex.)

Example Rotate example, Line example.

See also BRUSH procedure below.

Click to expand/collapse this hidden textBrush(Red,Green,Blue: number);

Procedure

EscapeE only.

BRUSH specifies the color for filled regions; see BOX and BUTTON procedures below.
RED, GREEN and BLUE may take values >=0, <=255 in decimal or >=$00, <=$FF in hexadecimal.

Example BRUSH(0,255,255)

would be cyan. (Equivalent to BRUSH($00,$FF,$FF) in Hex.)

See also COLOR and FRAME procedures.

Click to expand/collapse this hidden textPen(Width:number);

Procedure

EscapeE only.

PEN specifies the pen's WIDTH in pixels (at 600dpi) for LINE drawing.

Example Table example: Variable data

Click to expand/collapse this hidden textBox(X,Y,Dx,Dy:number);
Box(TH:tableHandle);

Procedures

EscapeE only.

BOX fills an area DX wide by DY high at position X,Y (in pixels at 600dpi) using the color specified by BRUSH.
The BOX function optionally takes a tableHandle TH (see TAB function).

See also the FRAME and BUTTON functions.

Click to expand/collapse this hidden textButton(X,Y,Dx,Dy:number);
Button(TH:tableHandle);

Procedures

EscapeE only.

BUTTON draws a filled button shape (lozenge) in the selected BRUSH color.
The BUTTON function optionally takes a tableHandle TH (see TAB function).

See also the FRAME and BOX functions.

Click to expand/collapse this hidden textCircle(X,Y,R[,Section]:number);

Procedure

EscapeE only.

CIRCLE draws a complete circle or a SECTION of a circle, radius R centered at position X,Y, (measured in pixels at 600dpi) using the current PEN and COLOR. If SECTION parameter is omitted a complete circle is drawn.

section=0 draws a complete circle (default)
section=1 draws the top right quadrant
section=2 draws the bottom right quadrant
section=3 draws the bottom left quadrant
section=4 draws the top left quadrant

Example Rotate example, Line example.

Click to expand/collapse this hidden textCurve(L:list);

Procedure

EscapeE only.

CURVE displays a Bezier curve.
L is a list of point-coordinate pairs, consisting of a start point pair (x,y) followed groups of three coordinate pairs. (Specified in  pixels at 600dpi.)

Example

L:=
[750, 1350,
150,750,   750,150,   1350,750,
1950,1350, 2550,1350, 3150,750,
...

See rs2 demo files and choose poly.rs2

Click to expand/collapse this hidden textPolyLine(L:list);

Procedure

EscapeE only.

Displays a POLYLINE linking all points specified by lists of coordinates in list L.

See rs2 demo files and choose poly.rs2

Click to expand/collapse this hidden textFrame(X,Y,Dx,Dy:number);
Frame(TH:tHandle);

Procedure

EscapeE only.

FRAME draws a rectangle DX wide by DY high at X,Y (measured in pixels at 600dpi) using the selected PEN and COLOR.
An overload of this function takes a Table Handle (see TAB function): a filled rectangle is drawn using the BOX function.