ActiveReports Developer 7
NewPage Property
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Detail Class : NewPage Property

Glossary Item Box

Gets or sets a value that determines whether a new page should be inserted before and/or after printing the section.

Syntax

Visual Basic (Declaration) 
Public Property NewPage As NewPage
C# 
public NewPage NewPage {get; set;}

Property Value

NewPage Enumeration.  Possible values are:

  • NewPage.After
  • NewPage.Before
  • NewPage.BeforeAfter
  • NewPage.None

Example

C#Copy Code
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.detail.NewPage = NewPage.BeforeAfter;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
   Me.Detail1.NewPage = NewPage.BeforeAfter
End Sub

See Also