Gets or sets the orientation of the page.
Syntax
Property Value
PageOrientation enumeration value that specifies the orientation of the page.
Remarks
Example
C# | Copy Code |
---|
private void rptPrint_ReportStart(object sender, System.EventArgs eArgs)
{
this.PageSettings.Orientation = GrapeCity.ActiveReports.Document.Section.PageOrientation.Landscape;
} |
Visual Basic | Copy Code |
---|
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 |
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