跳到主要内容

FACTDOUBLE

Returns the double factorial of a number.

Syntax

expression.FACTDOUBLE(arg1);

expression - A variable that represents a ApiWorksheetFunction class.

Parameters

NameRequired/OptionalData typeDefaultDescription
arg1RequiredApiRange | ApiName | numberThe value for which to return the double factorial.

Returns

number

Example

let worksheet = Api.GetActiveSheet();
let func = Api.GetWorksheetFunction();
worksheet.GetRange("A1").SetValue(func.FACTDOUBLE(123));