Skip to main content
All docs
V25.1
  • PdfGraphics.MeasureString(String, DXFont, PdfStringFormat) Method

    Measures the specified string when drawn with the specified font and text formatting parameters.

    Namespace: DevExpress.Pdf

    Assembly: DevExpress.Pdf.v25.1.Drawing.dll

    NuGet Package: DevExpress.Pdf.Drawing

    Declaration

    public SizeF MeasureString(
        string text,
        DXFont font,
        PdfStringFormat format
    )

    Parameters

    Name Type Description
    text String

    A text to measure.

    font DXFont

    An object that contains font parameters.

    format PdfStringFormat

    An object that contains text formatting parameters.

    Returns

    Type Description
    SizeF

    The string’s measured size.

    Remarks

    Use this method to calculate a size of the drawn text. Use the returned SizeF object to calculate a page area or a point where you can draw text.

    The MeasureString method overload measures a string with 96 DPI. Use the PdfGraphics.MeasureString(String, DXFont, PdfStringFormat, Single, Single) method overload to obtain text size with 72 DPI to calculate its size on a PDF page.

    See Also