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

In This Topic
    Duplex Property (PageSettings)
    In This Topic
    Gets or sets the report document setting for double-sided printing.
    Syntax
    'Declaration
     
    Public Property Duplex As Duplex
    public Duplex Duplex {get; set;}

    Property Value

    A System.Drawing.Duplex enumeration value.  The default value is determined by the value of System.Drawing.Printing.Duplex.Default.
    Example
    private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs)
    {
        this.PageSettings.Duplex = System.Drawing.Printing.Duplex.Default;
    }
    Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
       Me.PageSettings.Duplex = Drawing.Printing.Duplex.Default
    End Sub
    See Also