powered by
Set and Get Window Size for xlsx file
setWindowSize( wb, xWindow = NULL, yWindow = NULL, windowWidth = NULL, windowHeight = NULL )getWindowSize(wb)
getWindowSize(wb)
A Workbook object
the horizontal coordinate of the top left corner of the window
the vertical coordinate of the top left corner of the window
the width of the window
the height of the window
Set the size and position of the window when you open the xlsx file. The units are in twips. See Microsoft's documentation for the xlsx standard
## Create Workbook object and add worksheets wb <- createWorkbook() addWorksheet(wb, "S1") getWindowSize(wb) setWindowSize(wb, windowWidth = 10000)
Run the code above in your browser using DataLab