ActiveReports 18 .NET Edition
MESCIUS.ActiveReports Assembly / GrapeCity.ActiveReports Namespace / PageSettings Class / PaperSource Property
Example

In This Topic
    PaperSource Property (PageSettings)
    In This Topic
    Gets or sets the paper source used to print the report document pages.
    Syntax
    'Declaration
     
    Public Property PaperSource As PaperSourceKind
    public PaperSourceKind PaperSource {get; set;}

    Property Value

    A System.Drawing.Printing.PaperSourceKind enumeration value that specifies the paper source.
    Example
    private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs)
    {
        this.PageSettings.PaperSource = System.Drawing.Printing.PaperSourceKind.Manual;
    }
    Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
       Me.PageSettings.PaperSource = System.Drawing.Printing.PaperSourceKind.Manual
    End Sub
    See Also