ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Document Assembly / GrapeCity.ActiveReports.Document.Section Namespace / Page Class / Orientation Property
Example

In This Topic
    Orientation Property (Page)
    In This Topic
    Gets or sets the orientation of the page.
    Syntax
    'Declaration
     
    Public Property Orientation As PageOrientation
    public PageOrientation Orientation {get; set;}

    Property Value

    PageOrientation enumeration value that specifies the orientation of the page.
    Remarks
    The Printer.PaperHeight measurement is for the portrait orientation of the paper.  In Landscape, the height is equal to Printer.PaperWidth.
    Example
    private void rptPrint_ReportStart(object sender, System.EventArgs eArgs)
    {    
        this.PageSettings.Orientation = GrapeCity.ActiveReports.Document.Section.PageOrientation.Landscape;
    }
    Private Sub rptPrint_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart    
        Me.PageSettings.Orientation = GrapeCity.ActiveReports.Document.Section.PageOrientation.Landscape
    End Sub
    See Also