Sets the cell reference style.
Name | Type | Description |
sReferenceStyle | ReferenceStyle | The cell reference style. |
builder.CreateFile("xlsx"); var oWorksheet = Api.GetActiveSheet(); Api.SetReferenceStyle("xlR1C1"); var sReferenceStyle = Api.GetReferenceStyle(); oWorksheet.GetRange("A1").SetValue("The cell reference style: " + sReferenceStyle); builder.SaveFile("xlsx", "SetReferenceStyle.xlsx"); builder.CloseFile();