iwatakeshi
iwatakeshi

Reputation: 697

Qt QTextEdit and Page Break Line

Is there such a class that provides a page break line? I've been looking all over the documentation and googling it, but I have not found any source about a line that tells the user where the page break is located. Thank you

Upvotes: 1

Views: 2483

Answers (1)

Arnold Spence
Arnold Spence

Reputation: 22272

You have to drill down a bit to find it..

QTextEdit > QTextDocument > QTextBlock > QTextBlockFormat > pageBreakPolicy > QTextFormat::PageBreakFlags.

Upvotes: 1

Related Questions