Another useful class is the Font. You can set a font two ways:
Private Sub Form1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseClick
Dim MyBrush As New SolidBrush(Me.ForeColor)
Me.CreateGraphics.DrawString("Hello", Me.Font, MyBrush, e.X, e.Y)
End Sub 'Form1_MouseClick
Private Sub Form1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseClick
Dim MyBrush As New SolidBrush(Color.Red)
Dim MyFont As New Font("Courier New", 12, FontStyle.Bold)
Me.CreateGraphics.DrawString("Hello", MyFont, MyBrush, e.X, e.Y)
End Sub 'Form1_MouseClick
Experiment: Duplicate the program shown in the illustration.