get_Name()

ExcelDataCell::get_Name() method

Gets the name of the chart data cell.

System::String Aspose::Slides::Excel::ExcelDataCell::get_Name() override

Remarks

Example:

System::SharedPtr<ExcelDataWorkbook> wb = System::MakeObject<ExcelDataWorkbook>(testFile);
System::SharedPtr<IExcelDataCell> cell = wb->GetCell(1, 1, 1);
System::Console::WriteLine(cell->get_Name());

See Also