ActiveReports 19 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports Namespace / SectionReport Class
Members Example

In This Topic
    SectionReport Class
    In This Topic
    The SectionReport class is the base class for all section reports. It is used to execute and render the report.
    Object Model
    SectionReport Class
    Syntax
    'Declaration
     
    Public Class SectionReport 
       Inherits System.MarshalByRefObject
    public class SectionReport : System.MarshalByRefObject 
    Remarks
    SectionReport can be customized using code/scripts in the report events.
    Example
    var sectionReport = new GrapeCity.ActiveReports.SectionReport();
    sectionReport.LoadLayout(System.Xml.XmlReader.Create("Report.rpx")); 
    sectionReport.Document.Printer.PrinterName = String.Empty;
    viewer.LoadDocument(sectionReport);
    Inheritance Hierarchy

    System.Object
       System.MarshalByRefObject
          GrapeCity.ActiveReports.SectionReport

    See Also