New to Telerik Reporting? Download free 30-day trial

PageInfo Overview

Page info representing the state of a single document page and its content.

When the page is not available:

{
    "pageReady": false,
    "pageNumber": 1,
}

When the page is available:

{
    "pageReady": true,
    "pageNumber": 1,
    "pageContent": "<html>My page content</html>",
}

Fields

Field Type Required Description
pageReady Boolean true Indicates whether the processing of the current page is complete
pageNumber Number true An integer representing the count of ready physical pages
pageContent String false If rendering to HTML formats, the value is a String holding the markup of the page. Otherwise, the value is an array of bytes representing the content in the selected format. Available only if the page is ready
In this article