SpreadsheetRemovePrintGridlines

Removes print gridlines from the active sheet or specified sheet.

Method Signature

SpreadsheetRemovePrintGridlines(spreadsheetObj=[any], sheetName=[any])

Arguments

Argument
Type
Required
Description
Default

spreadsheetObj

ANY

true

The spreadsheet object.

sheetName

STRING

false

The sheet name (optional). If not provided, operates on active sheet.

Examples

Remove print gridlines:

// Disable gridlines for printing
var spreadsheet = SpreadsheetNew();
SpreadsheetRemovePrintGridlines( spreadsheet );

Last updated

Was this helpful?