Login Page - Create Account

Support Board


Date/Time: Thu, 19 Mar 2026 18:03:14 +0000



Post From: validity of GetSpreadsheetSheetHandleByName() result?

[2021-01-10 15:23:15]
User907968 - Posts: 866
If there is no match, does the function not simply return null pointer?


void* SheetHandle = sc.GetSpreadsheetSheetHandleByName(SheetCollectionName, SheetName, false);

if (SheetHandle == nullptr)
{
// some code for no spreadsheet
}
else
{
// some different code for spreadsheet found
}