DrawString

Graphics.DrawString method (1 of 6)

Draws the specified text string in the specified rectangle with the specified Brush and Font objects using the formatting attributes of the specified StringFormat.

public void DrawString(string s, Font font, Brush brush, RectangleF layoutRectangle)
Parameter Type Description
s String String to draw.
font Font Font that defines the text format of the string.
brush Brush Brush that determines the color and texture of the drawn text.
layoutRectangle RectangleF RectangleF structure that specifies the location of the drawn text that are applied to the drawn text.

See Also


Graphics.DrawString method (2 of 6)

Draws the specified text string at the specified location with the specified Brush and Font objects.

public void DrawString(string s, Font font, Brush brush, PointF point)
Parameter Type Description
s String String to draw.
font Font Font that defines the text format of the string.
brush Brush Brush that determines the color and texture of the drawn text.
point PointF PointF structure that specifies the upper-left corner of the drawn text.

See Also


Graphics.DrawString method (3 of 6)

Draws the specified text string at the specified location with the specified Brush and Font objects using the formatting attributes of the specified StringFormat.

public void DrawString(string s, Font font, Brush brush, PointF point, StringFormat format)
Parameter Type Description
s String String to draw.
font Font Font that defines the text format of the string.
brush Brush Brush that determines the color and texture of the drawn text.
point PointF PointF structure that specifies the upper-left corner of the drawn text.
format StringFormat StringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text.

See Also


Graphics.DrawString method (4 of 6)

Draws the specified text string at the specified location with the specified Brush and Font objects using the formatting attributes of the specified StringFormat.

public void DrawString(string s, Font font, Brush brush, float x, float y, StringFormat format)
Parameter Type Description
s String String to draw.
font Font Font that defines the text format of the string.
brush Brush Brush that determines the color and texture of the drawn text.
x Single The x-coordinate of the upper-left corner of the drawn text.
y Single The y-coordinate of the upper-left corner of the drawn text.
format StringFormat StringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text.

See Also


Graphics.DrawString method (5 of 6)

Draws the specified text string at the specified location with the specified Brush and Font objects.

public void DrawString(string s, Font font, Brush brush, float x, float y)
Parameter Type Description
s String String to draw.
font Font Font that defines the text format of the string.
brush Brush Brush that determines the color and texture of the drawn text.
x Single The x-coordinate of the upper-left corner of the drawn text.
y Single The y-coordinate of the upper-left corner of the drawn text.

See Also


Graphics.DrawString method (6 of 6)

Draws the specified text string in the specified rectangle with the specified Brush and Font objects using the formatting attributes of the specified StringFormat.

public void DrawString(string s, Font font, Brush brush, RectangleF layoutRectangle, 
    StringFormat format)
Parameter Type Description
s String String to draw.
font Font Font that defines the text format of the string.
brush Brush Brush that determines the color and texture of the drawn text.
layoutRectangle RectangleF RectangleF structure that specifies the location of the drawn text.
format StringFormat StringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text.

See Also