@brief Set the order in which pages are printed.
@param worksheet Pointer to a lxw_worksheet instance to be updated.
The %worksheet_print_across() function is used to change the default print direction. This is referred to by Excel as the sheet "page order":
@code worksheet_print_across(worksheet); @endcode
The default page order is shown below for a worksheet that extends over 4 pages. The order is called "down then across":
[1] [3] [2] [4]
However, by using the print_across function the print order will be changed to "across then down":
[1] [2] [3] [4]
See Implementation
@brief Set the order in which pages are printed.
@param worksheet Pointer to a lxw_worksheet instance to be updated.
The %worksheet_print_across() function is used to change the default print direction. This is referred to by Excel as the sheet "page order":
@code worksheet_print_across(worksheet); @endcode
The default page order is shown below for a worksheet that extends over 4 pages. The order is called "down then across":
[1] [3] [2] [4]
However, by using the print_across function the print order will be changed to "across then down":
[1] [2] [3] [4]