Name

IExcelDataCell.Name property

Gets the name of the chart data cell. Read-only String.

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