[]
        
(Showing Draft Content)

C1.C1Preview.RenderTable.VertPageHeaderOnFirstPage

VertPageHeaderOnFirstPage Property

VertPageHeaderOnFirstPage

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

Declaration
public bool VertPageHeaderOnFirstPage { get; set; }
Remarks

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

RenderTable rt = new RenderTable();
rt.ColGroups[0, 2].Header = TableHeaderEnum.All;
See Also