Class TableCellContainer
Inheritance
System.Object
TableCellContainer
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class TableCellContainer : IDisposable, IEnumerable<TableCell>, IEnumerable
Properties
Item[Int32, Int32]
Declaration
public TableCell this[int rowIndex, int columnIndex] { get; }
Parameters
System.Int32
rowIndex
|
System.Int32
columnIndex
|
Property Value
TableCell
|
Methods
ClearCellContent()
Declaration
public void ClearCellContent()
Dispose()
Declaration
public void Dispose()
GetEnumerator()
Declaration
public IEnumerator<TableCell> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<TableCell>
|
SetCellContent(Int32, Int32, ReportItem)
Declaration
public void SetCellContent(int rowIndex, int columnIndex, ReportItem item)
Parameters
System.Int32
rowIndex
|
System.Int32
columnIndex
|
ReportItem
item
|
SetCellContent(Int32, Int32, ReportItem, Int32, Int32)
Declaration
public void SetCellContent(int rowIndex, int columnIndex, ReportItem item, int rowSpan, int columnSpan)
Parameters
System.Int32
rowIndex
|
System.Int32
columnIndex
|
ReportItem
item
|
System.Int32
rowSpan
|
System.Int32
columnSpan
|