ComponentOne Reports for WPF
C1.C1Report Namespace / PageRenderingMode Enumeration

In This Topic
    PageRenderingMode Enumeration
    In This Topic
    Specifies the page rendering modes used when generating a report.
    Syntax
    'Declaration
     
    Public Enum PageRenderingMode 
       Inherits System.Enum
    public enum PageRenderingMode : System.Enum 
    Members
    MemberDescription
    AsMetafilesWhen generating a report, for each page a metafile is produced and serialized, and all page related data is then purged from memory. This mode is slower than the default, but uses less memory. Use this mode for large reports that run out of memory if using the default mode.
    DefaultThe default page rendering mode.
    ReflowableDocumentThe C1.C1Preview.C1PrintDocument representing the generated report (accessible via the C1Document property) will be reflowable, so that additional elements (such as overlays) may be added to the document after the report has generated, and C1Report.C1Document.Generate() may be called to render the additional content.

    Note that this mode is slower than the default, so use only when necessary.

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.C1Report.PageRenderingMode

    See Also