TRY NEW VERSION

FALSE

FALSE() → { number | string | boolean }

Returns the logical value FALSE.

Parameters:

This method doesn't have any parameters.

Returns:

Type
number | string | boolean

Example

Copy code
builder.CreateFile("xlsx");

const oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
var ans = oFunction.FALSE(); //returns false, doesnt require arguments
oWorksheet.GetRange("C1").SetValue(ans);

builder.SaveFile("xlsx", "FALSE.xlsx");
builder.CloseFile();

Resulting document