In Excel Interop, I can set up title rows to repeat on subsequent pages like so:
_xlSheet.PageSetup.PrintTitleRows = String.Format("${0}:${0}", COLUMN_HEADING_ROW);
How is it accomplished in EPPlus? I tried prodding Intellisense to giving me a clue by typing:
prodUsageWorksheet.PrinterSettings.
...but no "Print" (except "PrintArea") or "Title" offered itself to me...