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

In This Topic
    PageWidth Property (ReportSectionPage)
    In This Topic
    Gets or sets a width of the pages in the report section.
    Syntax
    'Declaration
     
    Public Property PageWidth As Length
    public Length PageWidth {get; set;}

    Property Value

    A Length value indicating the width of the pages. Default value is 8.5in.
    Example
    ReportSectionPage sectionPage = new ReportSectionPage();
    sectionPage.PageWidth = "8.5in";
    See Also