Is there any way that I can get the list of pages a document. Or any another way to work out pages from a document ?
Regards
Anand
1 Answer, 1 is accepted
0
Petya
Telerik team
answered on 22 Aug 2014, 11:09 AM
Hi Anand,
The document model of RadRichTextBox has no concept of pages, as they are determined based on the available page size. However, depending on what you want to achieve you can access the content of each page using document positions, for example:
DocumentPosition start = new DocumentPosition(this.radRichTextBox.Document);
DocumentPosition end = new DocumentPosition(this.radRichTextBox.Document);
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.