SetTitle sets the box's title.
(title string)
| 339 | |
| 340 | // SetTitle sets the box's title. |
| 341 | func (b *Box) SetTitle(title string) *Box { |
| 342 | b.title = title |
| 343 | return b |
| 344 | } |
| 345 | |
| 346 | // GetTitle returns the box's current title. |
| 347 | func (b *Box) GetTitle() string { |
no outgoing calls
no test coverage detected