ITableCell
Interface
Provides an interface for accessing a processing Table cell.
Definition
Namespace:Telerik.Reporting.Processing
Assembly:Telerik.Reporting.dll
Syntax:
C#
public interface ITableCell
Derived Classes:
Properties
ColumnIndex
int
Gets the index of the column that contains the cell.
C#
int ColumnIndex { get; }
ColumnSpan
int
Gets a value that indicates the total number of columns that the cell spans within the table.
C#
int ColumnSpan { get; }
Gets the ReportItem in the cell.
C#
ReportItem Item { get; }
RowIndex
int
Gets the index of the row that contains the cell.
C#
int RowIndex { get; }
RowSpan
int
Gets a value that indicates the total number of rows that the cell spans within the table.
C#
int RowSpan { get; }