get_Name()

IExcelDataCell::get_Name() method

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

virtual System::String Aspose::Slides::Excel::IExcelDataCell::get_Name()=0

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