get_Row()

ExcelDataCell::get_Row() method

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

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

See Also