[]
        
(Showing Draft Content)

C1.C1Preview.RenderTable.HorzPageFooterOnLastPage

HorzPageFooterOnLastPage Property

HorzPageFooterOnLastPage

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.

Declaration
public bool HorzPageFooterOnLastPage { get; set; }
Remarks

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;
See Also