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.C# | Copy Code |
---|---|
private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs) { this.PageSettings.Orientation = PageOrientation.Default; } |
Visual Basic | Copy Code |
---|---|
Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart Me.PageSettings.Orientation = PageOrientation.Default End Sub |