| 271 | } |
| 272 | |
| 273 | void Table::SetRowSpacing( std::size_t index, float spacing ) { |
| 274 | if( index >= m_rows.size() ) { |
| 275 | return; |
| 276 | } |
| 277 | |
| 278 | m_rows[index].spacing = spacing; |
| 279 | |
| 280 | UpdateRequisitions(); |
| 281 | RequestResize(); |
| 282 | } |
| 283 | |
| 284 | const std::string& Table::GetName() const { |
| 285 | static const std::string name( "Table" ); |