-
-
Notifications
You must be signed in to change notification settings - Fork 39
setColumnWidth
Julian Halliwell edited this page Feb 25, 2015
·
5 revisions
Sets the width of a column.
setColumnWidth( workbook, column, width )
##Required arguments
-
workbook
spreadsheet object -
column
numeric -
width
numeric: in points.
##Example
data = QueryNew( "First,Last","VarChar,VarChar",[ [ "Susi","Sorglos" ],[ "Frumpo","McNugget" ] ] );
spreadsheet = New spreadsheet();
workbook = spreadsheet.workbookFromQuery( data );
spreadsheet.setColumnWidth( workbook,1,50 );