TRY NEW VERSION

ARABIC

ARABIC(arg1) → { number | string | boolean }

Converts a Roman numeral to Arabic.

Parameters:

Name Type Description
arg1 string

Is the Roman numeral you want to convert.

Returns:

Type
number | string | boolean

Example

Copy code
builder.CreateFile("xlsx");
var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.ARABIC("MCCL"));
builder.SaveFile("xlsx", "ARABIC.xlsx");
builder.CloseFile();

Resulting document