Метод Table::getCell
Метод позволяет получить доступ к отдельной ячейке таблицы. В качестве аргумента может выступать текстовое представление адреса ячейки, либо экземпляр класса CellPosition.
Примеры
Table firstSheet = document.getBlocks().getTable(0).get();
Cell cell = firstSheet.getCell("B2");
std::printf("%s", cell.getFormattedValue().c_str());
CellPosition cellPosition = CellPosition(2, 1);
Cell cell = table.getCell(cellPosition);
std::printf("%s", cell.getFormattedValue().c_str());