Italic makes cell's text italic. Only works when using the tcell backend.
()
| 79 | |
| 80 | // Italic makes cell's text italic. Only works when using the tcell backend. |
| 81 | func Italic() Option { |
| 82 | return option(func(co *Options) { |
| 83 | co.Italic = true |
| 84 | }) |
| 85 | } |
| 86 | |
| 87 | // Underline makes cell's text underlined. |
| 88 | func Underline() Option { |