ExportHidden to show a column when exporting (default false)
(v bool)
| 9 | |
| 10 | // ExportHidden to show a column when exporting (default false) |
| 11 | func ExportHidden(v bool) ExportOption { |
| 12 | return func(opts *ExportOptions) { |
| 13 | opts.WithHiddenCols = v |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | // newExportOptions to build the ExportOptions in order to acces the parameters |
| 18 | func newExportOptions(opt ...ExportOption) ExportOptions { |
no outgoing calls