Метод Cell::getParagraphProperties
Возвращает свойства абзаца ParagraphProperties, находящегося в ячейке.
Пример
Cell cell = sheet.getCell("A1");
ParagraphProperties paragraphProperties = cell.getParagraphProperties();
if (paragraphProperties.alignment.has_value())
{
std::printf("%d", paragraphProperties.alignment.get());
}