| 360 | } |
| 361 | |
| 362 | double SimpleTable::height() const noexcept |
| 363 | { |
| 364 | if (m_grid.isEmpty()) |
| 365 | { |
| 366 | return 0.0; |
| 367 | } |
| 368 | |
| 369 | return ((m_grid.height() * m_style.cellHeight) + (m_grid.height() * m_style.borderThickness) + m_style.borderThickness); |
| 370 | } |
| 371 | |
| 372 | RectF SimpleTable::region(const Vec2& tablePos) const noexcept |
| 373 | { |
no test coverage detected