WithSameColumnWidth returns a new PanelPrinter with specific options.
(b ...bool)
| 58 | |
| 59 | // WithSameColumnWidth returns a new PanelPrinter with specific options. |
| 60 | func (p PanelPrinter) WithSameColumnWidth(b ...bool) *PanelPrinter { |
| 61 | p.SameColumnWidth = internal.WithBoolean(b) |
| 62 | return &p |
| 63 | } |
| 64 | |
| 65 | // WithBoxPrinter returns a new PanelPrinter with specific options. |
| 66 | func (p PanelPrinter) WithBoxPrinter(boxPrinter BoxPrinter) *PanelPrinter { |