 | WorksheetGetUnusedWorksheetName Method |
Determines the next unused worksheet name in the passed workbook
Namespace: NanoXLSXAssembly: NanoXLSX (in NanoXLSX.dll) Version: 2.6.2+7f12a949130e0be1e987e553d2d08c083176cdca
Syntaxprivate static string GetUnusedWorksheetName(
string name,
Workbook workbook
)
Parameters
- name String
- Original name to start the check
- workbook Workbook
- Workbook to look for existing worksheets
Return Value
StringNot yet used worksheet name
ExceptionsException | Condition |
---|
WorksheetException | A WorksheetException is thrown if the workbook reference is null, since all worksheets have to be considered during sanitation |
RemarksThe 'rare' case where 10^31 Worksheets exists (leads to a crash) is deliberately not handled,
since such a number of sheets would consume at least one quintillion bytes of RAM... what is vastly out of the 64 bit range
See Also