Name

ExcelDataCell.Name property

Gets the name of the chart data cell.

public string Name { get; }

Examples

Example:

[C#]
ExcelDataWorkbook wb = new ExcelDataWorkbook(testFile);
IExcelDataCell cell = wb.GetCell(1, 1, 1);
Console.WriteLine(cell.Name); //Output: "B2"

See Also