[]
Gets or sets the rows that contain the cells to be repeated on the bottom of each page, as a string in A1-style notation in the language of the macro.
Use this property to retrieve the bottom repeating rows configured for the worksheet page setup.
string PrintTailRows { get; set; }
Property PrintTailRows As String
IPageSetup pageSetup = worksheet.PageSetup;
pageSetup.PrintTailRows = "$50:$50";
string printTailRows = pageSetup.PrintTailRows;