MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / TableCell Class
Members

TableCell Class
Represents a content container of a cell in a table data region.
Object Model
TableCell Class
Syntax
'Declaration
 
Public NotInheritable Class TableCell 
   Inherits ReportComponentContainer
   Implements IRdlContainerIReportComponentIReportComponentContainerIValidateable 
 
Example
TableCell tableCell = new TableCell; tableCell.ColSpan = 2; tableCell.RowSpan = 1; tableCell.ReportItems = { new TextBox { Name = "Cell1", Width = "100pt", Height = "1in" }};
Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         GrapeCity.ActiveReports.PageReportModel.ReportComponent
            GrapeCity.ActiveReports.PageReportModel.ReportComponentContainer
               GrapeCity.ActiveReports.PageReportModel.TableCell

See Also