ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / Container Class / NewPage Property
Example

In This Topic
    NewPage Property (Container)
    In This Topic
    Gets or sets a value indicating on which page the content should start after the page break.
    Syntax
    'Declaration
     
    Public Property NewPage As StartNewPage
    public StartNewPage NewPage {get; set;}

    Property Value

    A StartNewPage value indicating the page on which to start the content after the page break.
    Example
    Container container = new Container();
    container.NewPage = StartNewPage.After;
    See Also