ActiveReports 8
Orientation Property
See Also  Example
GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports Namespace > PageSettings Class : Orientation Property

Glossary Item Box

Gets or sets a value that specifies whether the document pages should be printed in portrait or landscape.

Syntax

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

Property Value

A GrapeCity.ActiveReports.Document.Section.PageOrientation enumeration value that specifies the orientation of the document pages.

Example

C#Copy Code
private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs)
{
    this.PageSettings.Orientation = PageOrientation.Default;
}
Visual BasicCopy Code
Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
   Me.PageSettings.Orientation = PageOrientation.Default
End Sub

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also