get_Value()

ExcelDataCell::get_Value() method

Gets the value contained in the Excel cell.

System::SharedPtr<System::Object> Aspose::Slides::Excel::ExcelDataCell::get_Value() override

Remarks

Example:

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

See Also