COS
function COS(arg1: number = null): number | string | boolean
Description
Returns the cosine of an angle.
Parameters
- arg1
number
null Is the angle in radians for which you want the cosine.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.COS(1.5));