SetStatusText sets the text of status line at the bottom of the table It does not change its current visibility
(text string)
| 576 | // SetStatusText sets the text of status line at the bottom of the table |
| 577 | // It does not change its current visibility |
| 578 | func (t *Table) SetStatusText(text string) { |
| 579 | |
| 580 | t.statusLabel.SetText(text) |
| 581 | } |
| 582 | |
| 583 | // Rows returns a slice of maps with the contents of the table rows |
| 584 | // specified by the rows first and last index. |