TopLeft sets the glyph used in the upper-left corner.
(glyph string)
| 127 | |
| 128 | // TopLeft sets the glyph used in the upper-left corner. |
| 129 | func (b *Box) TopLeft(glyph string) *Box { |
| 130 | b.topLeft = glyph |
| 131 | return b |
| 132 | } |
| 133 | |
| 134 | // BottomRight sets the glyph used in the lower-right corner. |
| 135 | func (b *Box) BottomRight(glyph string) *Box { |
no outgoing calls