ActiveReports 6 Online Help
PaperName Property
Example 

Gets or sets the name of the type of paper.
Syntax
'Declaration
 
Public Property PaperName As String
public string PaperName {get; set;}

Property Value

String. The name of the type of custom paper.
Remarks

You can set the paper name only if the PaperKind property is set to Custom. To use custom paper sizes, you must set the PaperKind property to Custom and set the PaperName property to a unique string. 

Example
private void rptDataDynamics_ReportStart(object sender, System.EventArgs eArgs)
{
    this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Custom;
    this.PageSettings.PaperHeight = 3;
    this.PageSettings.PaperName = "Logo Labels";
    this.PageSettings.PaperWidth = 5;
    
}
Private Sub rptDD_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart
    Me.PageSettings.PaperKind = Printing.PaperKind.Custom
    Me.PageSettings.PaperHeight = 3
    Me.PageSettings.PaperName = "Logo Labels"
    Me.PageSettings.PaperWidth = 5    
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

Send Feedback