ActiveReports 14 .NET Edition
GrapeCity.ActiveReports Assembly / GrapeCity.ActiveReports Namespace / PageSettings Class / Orientation Property
Example

In This Topic
    Orientation Property (PageSettings)
    In This Topic
    Gets or sets a value that specifies whether the document pages should be printed in portrait or landscape.
    Syntax
    'Declaration
     
    Public Property Orientation As PageOrientation
    public PageOrientation Orientation {get; set;}

    Property Value

    A GrapeCity.ActiveReports.Document.Section.PageOrientation enumeration value that specifies the orientation of the document pages.
    Example
    private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs)
    {
        this.PageSettings.Orientation = PageOrientation.Default;
    }
    Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
       Me.PageSettings.Orientation = PageOrientation.Default
    End Sub
    See Also