public interface ITestDataTableRegion
A block of cells lies within a rectangular region that is delineated by a top-left cell and a bottom-right cell. All cells that lie within the boundaries of the rectangle are included in the region.
| Modifier and Type | Method and Description |
|---|---|
Cell |
getBottomRightCell()
Returns the lower right cell associated with a block region.
|
Cell |
getCell()
Returns the cell associated with a cell region.
|
Column |
getColumn()
Returns the column associated with a column region.
|
Row |
getRow()
Returns the row associated with a row region.
|
Cell |
getTopLeftCell()
Returns the upper left cell associated with a block region.
|
boolean |
isAllCells()
Returns
true if all the cells in the table are in the region. |
boolean |
isBlock()
Returns
true if the region is a block of cells in the corresponding table. |
boolean |
isCell()
Returns
true if the region is a single cell of the corresponding table. |
boolean |
isColumn()
Returns
true if the region is a single column of the corresponding table. |
boolean |
isRow()
Returns
true if the region is a single row of the corresponding table. |
boolean isAllCells()
true if all the cells in the table are in the region.boolean isCell()
true if the region is a single cell of the corresponding table.Cell getCell()
boolean isColumn()
true if the region is a single column of the corresponding table.Column getColumn()
boolean isRow()
true if the region is a single row of the corresponding table.Row getRow()
boolean isBlock()
true if the region is a block of cells in the corresponding table.Cell getTopLeftCell()
Cell getBottomRightCell()