[]
        
(Showing Draft Content)

C1.C1Preview.RenderTable.VertPageFooterOnLastPage

VertPageFooterOnLastPage Property

VertPageFooterOnLastPage

Gets or sets a value indicating whether a vertical page footer, if defined (see remarks), should be printed on the last of the horizontal pages spanned by the current table.

Declaration
public bool VertPageFooterOnLastPage { get; set; }
Remarks

To define a vertical page footer, create a column group on the current table, and mark it as a page or column footer, e.g. like this:

RenderTable rt = new RenderTable();
rt.ColGroups[10, 2].Footer = TableFooterEnum.All;
See Also