Horizontal sets the glyph used for the horizontal edges.
(glyph string)
| 145 | |
| 146 | // Horizontal sets the glyph used for the horizontal edges. |
| 147 | func (b *Box) Horizontal(glyph string) *Box { |
| 148 | b.horizontal = glyph |
| 149 | return b |
| 150 | } |
| 151 | |
| 152 | // Vertical sets the glyph used for the vertical edges. |
| 153 | func (b *Box) Vertical(glyph string) *Box { |
no outgoing calls