Graphics.DrawString Method (String, Font, Brush, PointF, StringFormat)  
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows .NET Server family
Show All
Draws the specified text string at the specified location with the specified Brush and Font objects using the formatting attributes of the specified StringFormat object.[C#]
[ComVisible(false)]
public void DrawString(
   string s,
   Font font,
   Brush brush,
   PointF point,
   StringFormat format
);
Parameters

String to draw. 
font 
Font object that defines the text format of the string. 
brush 
Brush object that determines the color and texture of the drawn text. 
point 
PointF structure that specifies the upper-left corner of the drawn text. 
format 
StringFormat object that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text. 
Return Value
This method does not return a value.Example
[C#] The following example is designed for use with Windows Forms, and it requires PaintEventArgs e, which is a parameter of the Paint event handler. The code performs the following actions: Creates a text string to draw. 
Defines the font as Arial (16pt). 
Creates a solid, black brush to draw with. 
Creates a point for the upper-left corner at which to draw the text. 
Sets the format of the string to draw vertically. 
Draws the string to the screen using the font, brush, destination point and format. 
[C#] 
public void DrawStringPointFFormat(PaintEventArgs e)
{
// Create string to draw.
String drawString = "Sample Text";
// Create font and brush.
Font drawFont = new Font("Arial", 16);
SolidBrush drawBrush = new SolidBrush(Color.Black);
// Create point for upper-left corner of drawing.
PointF drawPoint = new PointF(150.0F, 50.0F);
// Set format of string.
StringFormat drawFormat = new StringFormat();
drawFormat.FormatFlags = StringFormatFlags.DirectionVertical;
// Draw string to screen.
e.Graphics.DrawString(drawString, drawFont, drawBrush, drawPoint, drawFormat);
}
-------------------------------------------------------------------