ActiveReports 8
DefaultPaperSource Property
See Also  Example
GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports Namespace > PageSettings Class : DefaultPaperSource Property

Glossary Item Box

Gets or sets a value that specifies whether the report document should print to the printer's default paper source.

Syntax

Visual Basic (Declaration) 
Public Property DefaultPaperSource As System.Boolean
C# 
public System.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

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