Returns the quotient of two complex numbers.
Name | Type | Description |
arg1 | any | Is the complex numerator or dividend. |
arg2 | any | Is the complex denominator or divisor. |
builder.CreateFile("xlsx"); var oWorksheet = Api.GetActiveSheet(); var oFunction = Api.GetWorksheetFunction(); oWorksheet.GetRange("A1").SetValue(oFunction.IMDIV("-2+2.5i", "0.1+1.5j")); builder.SaveFile("xlsx", "IMDIV.xlsx"); builder.CloseFile();