ActiveReports3 Request technical support
DefaultPaperSource Property
See Also  Example


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 Boolean
Visual Basic (Usage)Copy Code
Dim instance As PageSettings
Dim value As Boolean
 
instance.DefaultPaperSource = value
 
value = instance.DefaultPaperSource
C# 
public bool DefaultPaperSource {get; set;}

Return 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

See Also