7.4

Table Of Contents
moveto(&width/2,&height/2)
SetStyleExt(&Style1,12.0000,0,[100],100)
showUTF8right(maputf8(@(2,15,35), 'MS-CP-1256', False),'normal')
StopJob (procedure)
Terminates execution of the document and returns control to the PostScript interpreter.
Syntax
stopjob()
Store (procedure)
Stores a string of characters on a specific line in the current data page.
Syntax
store( line, string )
Arguments
line
Integer value specifying the line on which to store the string.
string
String value to store in the data page.
Code Sample Example
This example is taken for an OnReadDataPage event for a user defined emulation. It shows how to store lines of text in the cur-
rent data page. It searches for a formfeed, increases the current line, stores the string, executes the document, resets the
page, and then ends the search.
Example
search(&str,'\014')
set(&current.line,&current.line+1)
store(&current.line,&str)
doform()
clearpage()
endsearch()
©2010 Objectif Lune Inc - 478 -