TitlePosition sets where the title is rendered relative to the box. Valid positions are box.Inside, box.Top, and box.Bottom.
(pos TitlePosition)
| 195 | // |
| 196 | // Valid positions are box.Inside, box.Top, and box.Bottom. |
| 197 | func (b *Box) TitlePosition(pos TitlePosition) *Box { |
| 198 | b.titlePos = pos |
| 199 | return b |
| 200 | } |
| 201 | |
| 202 | // WrapContent enables or disables automatic wrapping of content. |
| 203 | // |
no outgoing calls