Page History
...
Parameter | Description of Fields | Comments | Default |
---|---|---|---|
Parm1 – ExportData | <1> ExportData | ExportData is exported to the file | "" |
Example
Code Block |
---|
/* The following example shows how to use the EXPORTDATA message to insert a reference to a graphic file in a HTML page. */ declare function Set_Printer stat = Set_Printer("INIT", @FM:@FM:"2":@FM:"C:\Temp\OIPI.HTML", "", "", "", 4) stat = Set_Printer("TEXT", "This is a HTML test.") pos = Get_Printer("POS") y = pos<2> stat = Set_Printer("BMP", "PRINTER.BMP", 0:@FM:y) stat = Set_Printer("EXPORTDATA", "<IMG SRC='PRINTER.BMP'>") stat = Set_Printer("TERM", 1) ;* End printing |