[]
Gets or sets a value indicating whether a horizontal page footer, if defined (see remarks), should be printed on the last of the pages spanned by the current table.
public bool HorzPageFooterOnLastPage { get; set; }
To define a horizontal page footer, create a row group on the current table, and mark it as a page or column footer, e.g. like this:
RenderTable rt = new RenderTable();
rt.RowGroups[10, 2].Footer = TableFooterEnum.All;