Name
xlsx.GetColumnWidth -- get column width
Synopsis
width = xlsx.GetColumnWidth(id, col[, sheet])
Function
This function returns the width of the column specified in col. Column indices start at 1. The width is returned in font units of the normal display font and can be a fractional value. 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)
sheet
optional: index of the worksheet to use (defaults to the index of the default worksheet)
Results
width
column width in font units

Show TOC