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.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public bool HorzPageFooterOnLastPage { get; set; }
Visual Basic
Public Property HorzPageFooterOnLastPage As Boolean
	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:
Copy CodeC#
RenderTable rt = new RenderTable();
rt.RowGroups[10, 2].Footer = TableFooterEnum.All;

See Also