Gets a reference to the document's printer settings.
Syntax
Visual Basic (Declaration) | |
---|
Public ReadOnly Property Printer As Printer |
Property Value
A GrapeCity.ActiveReports.Document.Printer value that represents the current document printing options.
Remarks
Example
C# | Copy Code |
---|
private void SectionReport1_ReportStart(object sender, System.EventArgs eArgs)
{
this.Document.Printer.PrinterSettings.Copies=5;
}
private void SectionReport1_ReportEnd(object sender, System.EventArgs eArgs)
{
this.Document.Print(false, false);
} |
Visual Basic | Copy Code |
---|
Private Sub SectionReport1_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
Me.Document.Printer.PrinterSettings.Copies = 5
End Sub
Private Sub SectionReport1_ReportEnd(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
Me.Document.Print(False, False)
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