AddressR1C1Local Property
Gets the Range reference using R1C1-style notation. Read-only.
Syntax
Example
The following code illustrates how to access
AddressR1C1Local
property of the Range.
ExcelEngine excelEngine = new ExcelEngine(); IApplication application = excelEngine.Excel; application.DefaultVersion = ExcelVersion.Excel2013; IWorkbook workbook = application.Workbooks.Create(1); IWorksheet sheet = workbook.Worksheets[0]; string address = sheet.Range[1, 1].AddressR1C1Local; workbook.SaveAs("AddressR1C1Local.xlsx"); workbook.Close(); excelEngine.Dispose();
AssemblyVersion
Syncfusion.XlsIO.Base: 16.4460.0.52
See Also