WorksheetInfo constructor

init

Initializes a new instance of the WorksheetInfo class.

def __init__(self, index, name, range):
    ...
Parameter Type Description
index int The zero-based index of the worksheet.
name System.String A string value that represents the worksheet name.
range groupdocs.parser.data.WorksheetRange An instance of WorksheetRange class that represents the size of the worksheet.

Exceptions

Exception Description
ArgumentOutOfRangeException An index of the worksheet can’t be negative.
ArgumentNullException The size of the worksheet can’t be null.

See Also