PaperName Property (PageSettings)
Gets or sets the name of the type of paper.
public string PaperName {get; set;}
'Declaration
Public Property PaperName As String
Property Value
String. The name of the type of custom paper.
private void SectionReport1_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 SectionReport1_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