Append adds the given page to the end of the Tab.
(name string, child Control)
| 41 | |
| 42 | // Append adds the given page to the end of the Tab. |
| 43 | func (t *Tab) Append(name string, child Control) { |
| 44 | t.InsertAt(name, len(t.children), child) |
| 45 | } |
| 46 | |
| 47 | // InsertAt adds the given page to the Tab such that it is the |
| 48 | // nth page of the Tab (starting at 0). |