ActiveReports Developer 7
DefaultPaperSize Property
See Also  Example
GrapeCity.ActiveReports.v7 Assembly > GrapeCity.ActiveReports Namespace > PageSettings Class : DefaultPaperSize Property

Glossary Item Box

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

Syntax

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

C#Copy Code
private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs)
{
    this.PageSettings.DefaultPaperSize = true;
}
Visual BasicCopy Code
Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
   Me.PageSettings.DefaultPaperSize = True
End Sub

See Also