removeColumnBreak - cfsimplicity/spreadsheet-cfml GitHub Wiki
Removes a previously set page break
removeColumnBreak( workbook, column )
Required arguments
workbook
spreadsheet objectcolumn
numeric: column from which to remove the page break
Chainable? Yes.
Related
Examples
spreadsheet = New spreadsheet();
workbook = spreadsheet.newXlsx();
rowData = [ "column1", "column2", "column3", "column4" ];
spreadsheet
.addRows( workbook, [ rowData, rowData, rowData, rowData ] );//add a 4x4 dataset
.setColumnBreak( workbook, 3 );// add a page break after column 3
.removeColumnBreak( workbook, 3 ); // undo the previous action