7.4

Table Of Contents
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
Colour array that can be expressed expressed using one, three or four values ranging from 0 to 255. For Grayscale, a single
value is used in the form [K]. For the RGB model, three values are used in the form [R, G, B]. For the CMYK model, four values
are used in the form [C, M, Y, K].
Code Sample Example
This example draws three filled rectangles.
Example
setfillcolor([255]) %Sets fill colour to black using the Grayscale model
rectfill(1, 1, 1, 1) %Draws a black square
setfillcolor([125,0,0]) %Sets fill colour to medium red using the RGB model
rectfill(1, 1, 1, 1) %Draws a medium red square
©2010 Objectif Lune Inc - 330 -