- Код: Выделить всё
ByVal e As Printing.PrintPageEventArgs)
Dim strI As String = "bla-bla"
Dim drawFontI As New Font("Times New Roman", 13, _
FontStyle.Bold And FontStyle.Underline)
Dim TextRectI As New RectangleF(x, y ,w, h)
Dim SF As New StringFormat(StringFormatFlags.NoClip)
Dim SF2 As New StringFormat(SF)
e.Graphics.DrawString(strI, drawFontI, _
Brushes.Black, TextRectI, SF2)