ActiveReports Developer 7
ReportItem Class
Members  See Also 
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.PageReportModel Namespace : ReportItem Class

Glossary Item Box

A report item is one of the following types of objects: Line, Rectangle, TextBox, Image, Subreport, CustomReportItem, or DataRegion. DataRegions include List, Table, Matrix, and Chart. The ReportItem element itself is not used. Instead, the specific report item element is used whenever ReportItem is allowed.

Object Model

ReportItem Class

Syntax

Visual Basic (Declaration) 
Public MustInherit Class ReportItem 
   Inherits ReportComponent
   Implements IReportComponent 
C# 
public abstract class ReportItem : ReportComponent, IReportComponent  

Remarks

The properties in this base class are shared among all types of ReportItem elements. Note, however, that not all properties of the ReportItem are necessarily meaningful for all types of report items.

Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         GrapeCity.ActiveReports.PageReportModel.ReportComponent
            GrapeCity.ActiveReports.PageReportModel.ReportItem
               GrapeCity.ActiveReports.PageReportModel.CustomReportItem
               GrapeCity.ActiveReports.PageReportModel.DataRegion
               GrapeCity.ActiveReports.PageReportModel.Image
               GrapeCity.ActiveReports.PageReportModel.Line
               GrapeCity.ActiveReports.PageReportModel.OverflowPlaceHolder
               GrapeCity.ActiveReports.PageReportModel.Subreport
               GrapeCity.ActiveReports.PageReportModel.TextItem

See Also