for_split_sheet_into_pages method

for_split_sheet_into_pages

Initializes an instance of the SpreadsheetOptions class for rendering sheet into pages.

Returns

New instance of the SpreadsheetOptions class for rendering sheet into pages.

def for_split_sheet_into_pages(self, count_rows_per_page):
    ...
Parameter Type Description
count_rows_per_page int Count of rows to include into each page.

Exceptions

Exception Description
ArgumentException Thrown when count_rows_per_page is equals or less than zero.

for_split_sheet_into_pages

Initializes an instance of the SpreadsheetOptions class for rendering sheet into pages.

Returns

New instance of the SpreadsheetOptions class for rendering sheet into pages.

def for_split_sheet_into_pages(self, count_rows_per_page, count_columns_per_page):
    ...
Parameter Type Description
count_rows_per_page int Count of rows to include into each page.
count_columns_per_page int Count of columns to include into each page.

Exceptions

Exception Description
ArgumentException Thrown when count_rows_per_page is equals or less than zero.
ArgumentException Thrown when count_columns_per_page is equals or less than zero.

See Also