Version

DrawString(Graphics,String,Font,SolidBrush,Single,Single) Method

Draws the specified string at the specified location with the specified brush and font.
Syntax
'Declaration
 
Public Overloads Shared Sub DrawString( _
   ByVal gr As Graphics, _
   ByVal text As String, _
   ByVal font As Font, _
   ByVal brush As SolidBrush, _
   ByVal x As Single, _
   ByVal y As Single _
) 
public static void DrawString( 
   Graphics gr,
   string text,
   Font font,
   SolidBrush brush,
   float x,
   float y
)

Parameters

gr
The Graphics object.
text
The string to draw.
font
The Font that defines the text format of the string.
brush
The SolidBrush that determines the color of the drawn text.
x
The left corner of the drawn text.
y
The top corner of the drawn text.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also