Interface
ITableCell

Provides an interface for accessing a processing Table cell.

Definition

Namespace:Telerik.Reporting.Processing

Assembly:Telerik.Reporting.dll

Syntax:

cs-api-definition
public interface ITableCell

Properties

ColumnIndex

Gets the index of the column that contains the cell.

Declaration

cs-api-definition
int ColumnIndex { get; }

Property Value

int

ColumnSpan

Gets a value that indicates the total number of columns that the cell spans within the table.

Declaration

cs-api-definition
int ColumnSpan { get; }

Property Value

int

Item

Gets the ReportItem in the cell.

Declaration

cs-api-definition
ReportItem Item { get; }

Property Value

ReportItem

RowIndex

Gets the index of the row that contains the cell.

Declaration

cs-api-definition
int RowIndex { get; }

Property Value

int

RowSpan

Gets a value that indicates the total number of rows that the cell spans within the table.

Declaration

cs-api-definition
int RowSpan { get; }

Property Value

int

Table

Gets the Table this cell belongs to.

Declaration

cs-api-definition
Table Table { get; }

Property Value

Table

A Table object which the item belongs to.