Skip to main content

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

Draws a text string at the specified position using the specified font, color and format.

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

public void DrawString(
    string s,
    Font font,
    Brush foreBrush,
    Rectangle bounds,
    StringFormat strFormat
)

Parameters

Name Type Description
s String

A String value representing the text to be drawn.

font Font

A Font object which defines the font and associated settings of the text to be drawn.

foreBrush Brush

A Brush object which specifies the color and texture of the drawn text.

bounds Rectangle

A Rectangle structure which represents the drawing area.

strFormat StringFormat

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

The following code snippets (auto-collected from DevExpress Examples) contain references to the DrawString(String, Font, Brush, 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