get_Row()

IExcelDataCell::get_Row() method

Gets the zero-based index of the row in the worksheet where the cell is located. Read-only int32_t.

virtual int32_t Aspose::Slides::Excel::IExcelDataCell::get_Row()=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_Row());

See Also