Reports for WPF | ComponentOne
C1.C1Report Namespace / C1Report Class / PageImages Property

In This Topic
    PageImages Property (C1Report)
    In This Topic
    Gets a list of System.Drawing.Imaging.Metafile objects that correspond to the pages in the report. Using this property on large reports is not recommended as it creates images for all pages at once and thus can exhaust system resources. Instead, use C1Report.GetPageImages, C1Report.GetPageImage and C1Report.GetPageCount methods.
    Syntax
    'Declaration
     
    Public ReadOnly Property PageImages As ArrayList
    public ArrayList PageImages {get;}
    Remarks
    Use the C1Report.Render method to create or refresh the page images.
    See Also