Returns a bitwise 'Exclusive Or' of two numbers.
Name | Type | Description |
arg1 | number | Is the decimal representation of the binary number you want to evaluate. |
arg2 | number | Is the decimal representation of the binary number you want to evaluate. |
builder.CreateFile("xlsx"); var oWorksheet = Api.GetActiveSheet(); var oFunction = Api.GetWorksheetFunction(); oWorksheet.GetRange("A1").SetValue(oFunction.BITXOR(5, 3)); builder.SaveFile("xlsx", "BITXOR.xlsx"); builder.CloseFile();