Hi ,

In QTextTable when we press return key,the text goes next line as we expect.But when we try to get that text from QTextTableCell using the code

table.cellAt(0, 1).firstCursorPosition().block().text();

It gives only the first line.The text after return key(next line) is not returned.

Anybody give some suggestion to get the full text in a QTextTable even when we press return key in a cell.

Thanks