# 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:

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

## Related

* [SpreadsheetAddPrintGridlines()](https://boxlang.ortusbooks.com/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/reference/built-in-functions/spreadsheetaddprintgridlines) - Add gridlines
* [SpreadsheetSetPrintOrientation()](https://boxlang.ortusbooks.com/boxlang-framework/boxlang-plus/modules/bx-spreadsheet/reference/built-in-functions/spreadsheetsetprintorientation) - Set orientation
