GrapeCity MultiRow Windows Forms Documentation
Print Settings for each Column Header Section

In MultiRow, you can set the printing method for each section of the column footer and the column header.

Specifying the Print Pages of the Column Header Section

You can use the ColumnHeaderSection.PrintPagesMode property to set the printing method for each column header section.

Using Code

This example sets properties for column headers.

[VB]

Imports GrapeCity.Win.MultiRow 
Dim template = New Template1() 
template.ColumnHeaders(0).PrintPagesMode = PrintHeader.AllPages
template.ColumnHeaders(1).PrintPagesMode = PrintHeader.FirstPage 
GcMultiRow1.Template = template

[CS]

using GrapeCity.Win.MultiRow; 
Template template = new Template1(); 
template.ColumnHeaders[0].PrintPagesMode = PrintHeader.AllPages; 
template.ColumnHeaders[1].PrintPagesMode = PrintHeader.FirstPage;
gcMultiRow1.Template = template;

Specifying the Print Pages of the Column Footer Section

You can use the ColumnFooterSection.PrintPagesMode property to set the printing method for each column footer section.

Using Code

This example sets properties for column footers.

[VB]

Imports GrapeCity.Win.MultiRow 
Dim template = New Template1() 
template.ColumnFooters(0).PrintPagesMode = PrintFooter.AllPages
template.ColumnFooters(1).PrintPagesMode = PrintFooter.LastPage 
GcMultiRow1.Template = template

[CS]

using GrapeCity.Win.MultiRow; 
Template template = new Template1(); 
template.ColumnFooters[0].PrintPagesMode = PrintFooter.AllPages; 
template.ColumnFooters[1].PrintPagesMode = PrintFooter.LastPage;
gcMultiRow1.Template = template;
See Also

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options