BottomRight sets the glyph used in the lower-right corner.
(glyph string)
| 133 | |
| 134 | // BottomRight sets the glyph used in the lower-right corner. |
| 135 | func (b *Box) BottomRight(glyph string) *Box { |
| 136 | b.bottomRight = glyph |
| 137 | return b |
| 138 | } |
| 139 | |
| 140 | // BottomLeft sets the glyph used in the lower-left corner. |
| 141 | func (b *Box) BottomLeft(glyph string) *Box { |
no outgoing calls