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

AppearanceObject.DrawVString(GraphicsCache, String, Font, Brush, Rectangle, StringFormatInfo, Int32) Method

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

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v19.2.dll

Declaration

public void DrawVString(
    GraphicsCache cache,
    string text,
    Font font,
    Brush foreBrush,
    Rectangle bounds,
    StringFormatInfo strFormat,
    int angle
)

Parameters

Name Type Description
cache GraphicsCache

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

text String

A String value which represents 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 value representing the drawing area.

strFormat DevExpress.Utils.StringFormatInfo

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

angle Int32

An integer value specifying the angle in degrees at which the text should be drawn.

See Also