@progress/telerik-common-report-viewer
Version:
Common code for Progress® Telerik® Report Viewer
15 lines (14 loc) • 632 B
TypeScript
import { PageAction } from './';
/** Represents information about a page from a report. */
export declare class PageInfo {
/** The number of the page in order of appearance in the report. */
pageNumber: number;
/** Indicates the page is rendered and ready for display. */
pageReady: boolean;
/** The CSS styles applied to the page. */
pageStyles: string;
/** The HTML content of the page, which may include text, images, and other elements. */
pageContent: string;
/** An array of actions associated with the page, such as drilldowns or toggles. */
pageActions: PageAction[];
}