Enumerates page images (represented by metafiles) of the generated report.
Using this method in a "foreach" loop allows to iterate over all pages of a large report
without exhausting system resources.
This approach is preferable to PageImages property that creates images
for all pages and can consume a large amount of resources.
Namespace:
C1.C1ReportAssembly: C1.C1Report.2 (in C1.C1Report.2.dll)
Syntax
C# |
---|
public IEnumerable<Metafile> GetPageImages() |
Visual Basic |
---|
Public Function GetPageImages As IEnumerable(Of Metafile) |
Return Value
An IEnumerable that allows to iterate over the page images.Remarks
You must call the Render()()()() method to create or refresh the pages.