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

In This Topic
    DefaultPaperSource Property
    In This Topic
    Gets or sets a value that specifies whether the report document should print to the printer's default paper source.
    Syntax
    'Declaration
     
    Public Property DefaultPaperSource As Boolean
    public bool DefaultPaperSource {get; set;}

    Property Value

    Boolean. True if the document should use the printer's default paper source; otherwise, False. The default value is False.
    Example
    private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs)
    {
        this.PageSettings.DefaultPaperSource = true;
    }
    Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
       Me.PageSettings.DefaultPaperSource = True
    End Sub
    See Also