pub fn set_panes(ws: &mut WorksheetXml, cell: &str) -> Result<()>Expand description
Set freeze panes on a worksheet.
The cell reference indicates the top-left cell of the scrollable (unfrozen) area.
For example, "A2" freezes row 1, "B1" freezes column A, and "B2" freezes
both row 1 and column A.
Returns an error if the cell reference is invalid or is "A1" (which would
freeze nothing).