ActiveReports 9
DefaultPaperSize Property
Example 

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

Property Value

Boolean. True if the document should use the printer's default paper size; otherwise, False. The default value is False.
Example
private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs)
{
    this.PageSettings.DefaultPaperSize = true;
}
Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
   Me.PageSettings.DefaultPaperSize = 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

Reference

PageSettings Class
PageSettings Members
PaperKind Property

 

 


Copyright © 2014 GrapeCity, inc. All rights reserved

Support Forum