BottomLeft sets the glyph used in the lower-left corner.
(glyph string)
| 139 | |
| 140 | // BottomLeft sets the glyph used in the lower-left corner. |
| 141 | func (b *Box) BottomLeft(glyph string) *Box { |
| 142 | b.bottomLeft = glyph |
| 143 | return b |
| 144 | } |
| 145 | |
| 146 | // Horizontal sets the glyph used for the horizontal edges. |
| 147 | func (b *Box) Horizontal(glyph string) *Box { |
no outgoing calls