MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports Namespace / SectionReport Class
Members Example

SectionReport Class
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
 
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