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

PdfStringFormatFlags Enum

Specifies the display and layout information for text strings.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Pdf.v24.2.Core.dll

NuGet Package: DevExpress.Pdf.Core

#Declaration

[Flags]
public enum PdfStringFormatFlags

#Members

Name Description
MeasureTrailingSpaces

Includes the trailing space at the end of each line.

NoWrap

Text wrapping between lines when formatting within a rectangle is disabled. This flag is implied when a point is passed instead of a rectangle, or when the specified rectangle has a zero line length.

LineLimit

Only entire lines are laid out in the formatting rectangle.

NoClip

Overhanging parts of glyphs, and unwrapped text reaching outside the formatting rectangle are allowed to be displayed.

#Related API Members

The following properties accept/return PdfStringFormatFlags values:

#Remarks

A PdfStringFormatFlags enumeration value is returned by the PdfStringFormat.FormatFlags property.

See Also