SheetSet constructor

__init__(self, sheet_indexes)

Creates a sheet set based on exact sheet indexes.


def __init__(self, sheet_indexes):
    ...
ParameterTypeDescription
sheet_indexeslistzero based sheet indexes.

Remarks

If a sheet is encountered that is not in the workbook, an exception will be thrown during rendering.

__init__(self, sheet_names)

Creates a sheet set based on exact sheet names.


def __init__(self, sheet_names):
    ...
ParameterTypeDescription
sheet_nameslistsheet names.

Remarks

If a sheet is encountered that is not in the workbook, an exception will be thrown during rendering.

See Also