[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.TableCell

TableCell Class

Represents a content container of a cell in a table data region.

Namespace: GrapeCity.ActiveReports.PageReportModel
Assembly: MESCIUS.ActiveReports.Core.Rdl.dll
Syntax
public sealed class TableCell : ReportComponentContainer, IReportComponentContainer, IRdlContainer, IReportComponent, IComponent, IDisposable, IValidateable
Examples

TableCell tableCell = new TableCell; tableCell.ColSpan = 2; tableCell.RowSpan = 1; tableCell.ReportItems = { new TextBox { Name = "Cell1", Width = "100pt", Height = "1in" }};

Constructors

Name Description
TableCell()

Initializes a new instance of the TableCell class.

Properties

Name Description
AutoMergeMode

Gets a mode to merge the adjacent cells (text boxes) in a row group with the same value.

ColSpan

Gets or sets a number of columns the cell spans.

RowSpan

Gets or sets a number of rows the cell spans.

Methods

Name Description
Validate(ValidationContext)

Validates the current state of the TableCell object.

Extension Methods