Name
xlsx.HideRow -- show or hide a row
Synopsis
xlsx.HideRow(id, row, hidden[, sheet])
Function
This function can be used to show or hide the row specified by row. Row indices start at 1. The hidden argument must be set to True to hide the row or False to unhide it. Optionally, you can also pass the index of the worksheet to use in the optional sheet parameter (starting from 1 for the first worksheet). If the sheet parameter is omitted, the worksheet set by xlsx.SetDefaultSheet() will be used.

Inputs
id
identifier of the XLSX document to use
row
row index to use (starting from 1 for the first row)
hidden
True to hide the row, False to show it
sheet
optional: index of the worksheet to use (defaults to the index of the default worksheet)

Show TOC