Underline makes cell's text underlined.
()
| 86 | |
| 87 | // Underline makes cell's text underlined. |
| 88 | func Underline() Option { |
| 89 | return option(func(co *Options) { |
| 90 | co.Underline = true |
| 91 | }) |
| 92 | } |
| 93 | |
| 94 | // Strikethrough strikes through the cell's text. Only works when using the tcell backend. |
| 95 | func Strikethrough() Option { |