Name
xlsx.HideColumn -- show or hide a column
Synopsis
xlsx.HideColumn(id, col, hidden[, sheet])
Function
This function can be used to show or hide the column specified by col. Column indices start at 1. The hidden argument must be set to True to hide the column 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
col
column index to use (starting from 1)
hidden
True to hide the column, False to show it
sheet
optional: index of the worksheet to use (defaults to the index of the default worksheet)

Show TOC