6.0

Table Of Contents
140
Language Reference
4
Arguments
info — String value specifying a description of the fax.
Code Sample Example
setfaxinformation( 'purchase confirmation' )
SetFaxNumber (procedure)
Defines a fax number for PlanetPress Fax.
Syntax
setfaxnumber( faxnumber )
Arguments
faxnumber — String value specifying the fax number.
Code Sample Example
setfaxnumber( '(514)276-7633' )
SetFillColor (procedure)
Sets the colour used to paint the insides of any closed shapes when issuing a fill or a strokeandfill
command.
Syntax
setfillcolor( colour )
Argument
colour — CMYK colour array, expressed in the form [C, M, Y, K]
Code Sample Example
This example draws two filled rectangles.
Example
setfillcolor([0,0,100,0]) %Sets fill colour to yellow
rectfill(0, 0, 1, 1) %Draws a yellow square
setfillcolor([50,50,0,50]) %Sets fill colour to blue
rectfill(1, 1, 1, 1) %Draws a blue square