Skip to main content

GraphicsCache.CalcTextSize(String, Font, StringFormat, Int32, Int32) Method

Calculates the size of the specified string when it’s drawn with the specified font and formatting, fitting the string into a clipping rectangle.

Namespace: DevExpress.Utils.Drawing

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

public SizeF CalcTextSize(
    string text,
    Font font,
    StringFormat strFormat,
    int maxWidth,
    int maxHeight
)

Parameters

Name Type Description
text String

The string to be measured.

font Font

The font in which to paint the string.

strFormat StringFormat

Contains formatting information, such as the line spacing and alignment of the string.

maxWidth Int32

The maximum width of the clipping rectangle that will fit the string (in pixels).

maxHeight Int32

The maximum height of the clipping rectangle that will fit the string (in pixels).

Returns

Type Description
SizeF

The measured size of the string, in pixels.

See Also