Graphics.DrawString

DrawString(string, Font, Brush, RectangleF)

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)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
layoutRectangleRectangleFRectangleF structure that specifies the location of the drawn text that are applied to the drawn text.

See Also


DrawString(string, Font, Brush, PointF)

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)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
pointPointFPointF structure that specifies the upper-left corner of the drawn text.

See Also


DrawString(string, Font, Brush, PointF, StringFormat)

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)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
pointPointFPointF structure that specifies the upper-left corner of the drawn text.
formatStringFormatStringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text.

See Also


DrawString(string, Font, Brush, float, float, StringFormat)

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)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
xSingleThe x-coordinate of the upper-left corner of the drawn text.
ySingleThe y-coordinate of the upper-left corner of the drawn text.
formatStringFormatStringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text.

See Also


DrawString(string, Font, Brush, float, float)

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)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
xSingleThe x-coordinate of the upper-left corner of the drawn text.
ySingleThe y-coordinate of the upper-left corner of the drawn text.

See Also


DrawString(string, Font, Brush, RectangleF, StringFormat)

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)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
layoutRectangleRectangleFRectangleF structure that specifies the location of the drawn text.
formatStringFormatStringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text.

See Also