[]
Represents a collection of RenderTable cells (objects of the type TableCell). A collection of this type is returned by the Cells property of a table.
[C1ClassSerialization(true)]
public class TableCellCollection : FastList, IList, ICollection, IEnumerable
Name | Description |
---|---|
this[int, int] | Gets the TableCell at the intersection of the specified row and column. This property always returns a non-null TableCell object. |
Owner | Gets the RenderTable containing the current collection of cells. |
Name | Description |
---|---|
AssignFrom(TableCellCollection) | Assigns (copies) properties from another TableCellCollection to the current object. |
FindCell(int, int) | Returns the TableCell object at the specified row and column in the containing RenderTable, or null if that object has not been initialized. |
GetRightBottomBounds() | Gets the bounds of the initialized cells area. The returned Size structure's Width contains the column index of the rightmost initialized cell + 1, while Height contains the row index of the bottommost initialized cell + 1. |