SIN
function SIN(arg1: number = null): number | string | boolean
Description
Returns the sine of an angle.
Parameters
- arg1
number
null Is the angle in radians for which you want the sine. Degrees * PI()/180 = radians.
Returns
number | string | boolean
Try It
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.SIN(0.5));