7.5

Table Of Contents
Arguments
name
String value specifying the name of the index term with which you want to associate a data value.
data
String value specifying the data value you want to associate with the index term.
Code Sample Examples
These examples illustrate setimageindex().
Example 1
setimageindex( 'PONumber', '2005')
Example 2
setimageindex( 'PONumber', @(2,24,32) )
SetLineWidth (procedure)
Sets the width of the pen used for drawing lines, boxes and other objects. When setting the line width, remember that the
exact location of the pen is on the middle of the line, with the stroke spilling over equally on both sides.
Syntax
setlinewidth( width )
Argument
widthSetLineWidth (procedure)
Measure value setting the width, in inches, of the drawing pen.
Code Sample Examples
Example 1
This example sets the pen width to 1/4 inch then draws a 2"x2" rectangle using that pen.
setlinewidth(0.25)
rectstroke(0,0,2,2)
©2010 Objectif Lune Inc - 447 -