-
-
Notifications
You must be signed in to change notification settings - Fork 40
getColumnWidthInPixels
Julian Halliwell edited this page Sep 20, 2021
·
2 revisions
Gets the width of a column in the currently active sheet in pixels.
getColumnWidthInPixels( workbook, column )
-
workbookspreadsheet object -
columnnumeric
Chainable? Yes but ends the chain.
data = QueryNew( "First,Last", "VarChar,VarChar", [ [ "Susi","Sorglos" ], [ "Frumpo","McNugget" ] ] );
spreadsheet = New spreadsheet();
workbook = spreadsheet.workbookFromQuery( data );
columnOnePixelWidth = spreadsheet.getColumnWidthInPixels( workbook, 1 );