get_default_sheet_name method

get_default_sheet_name(self)

Gets the default sheet name for adding worksheet automatically. Default is “Sheet”.

Returns

the default sheet name for adding worksheet automatically


def get_default_sheet_name(self):
    ...

Remarks

The automatically added(such as by WorksheetCollection.add) sheet’s name will be the specified name plus sequence number. For example, for Germany user maybe wants the sheet name to be “Tabellenblatt2” instead of “Sheet2”. Then user may implement this method to return “Tabellenblatt”.

See Also