Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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

In This Article

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

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v24.2.dll

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

#Declaration

public void DrawString(
    GraphicsCache cache,
    string text,
    Rectangle bounds,
    Font font,
    StringFormat format
)

#Parameters

Name Type Description
cache GraphicsCache

A GraphicsCache object providing storage for the pens, fonts and brushes used during painting.

text String

A String value representing the text to be drawn.

bounds Rectangle

A Rectangle value representing the drawing area.

font Font

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

format StringFormat

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

See Also