views:

227

answers:

0

Are there any templates out there for formatting strings for printing like as in the following:

Private Sub PrintDoc_PrintPage(ByVal sender As System.Object, ByVal e As System.Drawing.Printing.PrintPageEventArgs) Handles PrintDoc.PrintPage  
    e.Graphics.DrawString("String to be printed", New Font("arial", 10), Brushes.Black, 1, 200)  
End Sub