QTextTable を作成してデータを挿入しようとしています。現在、いくつかのエラーのため、テーブルを作成できません
宣言されていない識別子「editor」の使用
TextTable にデータを挿入する方法もわかりません。私のコードは以下です
QTextCursor cursor(editor->textCursor());
cursor.movePosition(QTextCursor::Start);
QTextTable *table = cursor.insertTable(5, 3);
以下のコードを試してみましたが、エラーはありません。テキストテーブルにデータを挿入して印刷できるようにするにはどうすればよいのでしょうか?
QTextEdit *editor = new QTextEdit();
QTextCursor cursor(editor->textCursor());
cursor.movePosition(QTextCursor::Start);
QTextTable *table = cursor.insertTable(5, 3);
table->insertRows(0, 5);