Interface ITableCell
Provides an interface for accessing a processing Table cell.
Namespace: Telerik.Reporting.Processing
Assembly: Telerik.Reporting.dll
Syntax
public interface ITableCell
Properties
ColumnIndex
Gets the index of the column that contains the cell.
Declaration
int ColumnIndex { get; }
Property Value
System.Int32
|
ColumnSpan
Gets a value that indicates the total number of columns that the cell spans within the table.
Declaration
int ColumnSpan { get; }
Property Value
System.Int32
|
Item
RowIndex
Gets the index of the row that contains the cell.
Declaration
int RowIndex { get; }
Property Value
System.Int32
|
RowSpan
Gets a value that indicates the total number of rows that the cell spans within the table.
Declaration
int RowSpan { get; }
Property Value
System.Int32
|