| Visual Basic (Declaration) | |
|---|---|
Public Property PaperSource As System.Drawing.Printing.PaperSourceKind | |
| C# | |
|---|---|
public System.Drawing.Printing.PaperSourceKind PaperSource {get; set;} | |
Property Value
A System.Drawing.Printing.PaperSourceKind enumeration value that specifies the paper source.| C# | Copy Code |
|---|---|
private void rptPageSettings_ReportStart(object sender, System.EventArgs eArgs) { this.PageSettings.PaperSource = System.Drawing.Printing.PaperSourceKind.Manual; } | |
| Visual Basic | Copy Code |
|---|---|
Private Sub rptPageSettings_ReportStart(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.ReportStart Me.PageSettings.PaperSource = System.Drawing.Printing.PaperSourceKind.Manual End Sub | |