TopRight sets the glyph used in the upper-right corner.
(glyph string)
| 121 | |
| 122 | // TopRight sets the glyph used in the upper-right corner. |
| 123 | func (b *Box) TopRight(glyph string) *Box { |
| 124 | b.topRight = glyph |
| 125 | return b |
| 126 | } |
| 127 | |
| 128 | // TopLeft sets the glyph used in the upper-left corner. |
| 129 | func (b *Box) TopLeft(glyph string) *Box { |
no outgoing calls