Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ParameterDescription of FieldsCommentsDefault
SettingType of setting to be modified.SEE PROPERTIES BELOW.""
Row1Starting row of cells to be modified ""
Col1Starting column of cells to be modified  
Row2Ending row of cells to be modifiedNull if changing only 1 cell.Row 1
Col2Ending column of cells to be modifiedNull if changing only 1 cell.Col 1
ValueProperty changeBased on the setting parameter.

ex. If the property is background color this contains the RGB or OIPRINT_EQUATES color.

 

Example

 
Code Block
Set_Printer("INIT","","","",1,2)
 
Set_Printer("STARTTABLE")
 
colFormat = '<_1440':@vm:'<_1440':@vm:'<_1440'
colHeader = 'Column 1':@vm:'Column 2':@vm:'Column 3'
data = ''
for i = 1 to 30
   data<-1> = 'Col 1 - ':i:@vm:'Col 2 - ':i:@vm:'Col 3 ':i
next i
 
Set_Printer("ADDTABLE",colFormat,colHeader,data,'','','','')
 
* Set First Column to Bold
Set_Printer("TABLECELL",25:@fm:1:@fm:1:@fm:30:@fm:1:@fm:1)
 
* Set Second Column to Underline
Set_Printer("TABLECELL",27:@fm:1:@fm:2:@fm:30:@fm:2:@fm:1)
 
Set_Printer("ENDTABLE")
 
Set_Printer("TERM")

 

...

See also

STARTTABLE Set_Printer MessageENDTABLE Set_Printer MessageADDTABLE Set_Printer Message

Properties

These properties are outline in OIPI_EQUATES.

...