-
-
Notifications
You must be signed in to change notification settings - Fork 36
formatRow
Julian Halliwell edited this page Oct 22, 2020
·
8 revisions
Formats/styles the contents of a single row.
formatRow( workbook, format, row[, overwriteCurrentStyle [, cellStyle ] ] )
-
workbook
spreadsheet object -
format
struct: See Formatting options for details. Optional ifcellStyle
supplied. -
row
numeric
-
overwriteCurrentStyle
boolean default=true: for performance/efficiency reasons all of the existing styles will be completely overwritten when using this method. To preserve existing formatting properties other than the ones being changed, set this flag tofalse
, but please note that this should only be used when formatting a limited number of cells (you may run into errors if applied to too many cells). -
cellStyle
POI CellStyle object: an existing cellStyle object containing the desired formatting options. See createCellStyle().
data = QueryNew( "First,Last","VarChar,VarChar",[ [ "Susi","Sorglos" ],[ "Frumpo","McNugget" ] ] );
spreadsheet = New spreadsheet();
workbook = spreadsheet.workbookFromQuery( data );
spreadsheet.formatRow( workbook,{bold="true"},1 );