-
-
Notifications
You must be signed in to change notification settings - Fork 36
removePrintGridlines
Julian Halliwell edited this page Sep 20, 2021
·
2 revisions
Removes gridlines between all rows and columns of the currently active sheet when printed.
removePrintGridlines( workbook )
-
workbook
spreadsheet object
Chainable? Yes.
data = QueryNew( "First,Last","VarChar,VarChar",[ [ "Susi","Sorglos" ],[ "Frumpo","McNugget" ] ] );
spreadsheet = New spreadsheet();
workbook = spreadsheet.workbookFromQuery( data );
spreadsheet.addPrintGridlines( workbook );
// Actually, changed my mind...
spreadsheet.removePrintGridlines( workbook );