Skip to main content
A newer version of this page is available. .

GraphicsCache.DrawString(String, Font, Color, Rectangle, StringFormat) Method

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

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v18.2.dll

Declaration

public void DrawString(
    string s,
    Font font,
    Color color,
    Rectangle bounds,
    StringFormat strFormatInfo
)

Parameters

Name Type Description
s String

String to draw.

font Font

Font that defines the text format of the string.

color Color

Color of the drawn text.

bounds Rectangle

Rectangle structure that specifies the location of the drawn text.

strFormatInfo StringFormat

StringFormatInfo object that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the DrawString(String, Font, Color, Rectangle, StringFormat) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also