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

XRLabel.TextTrimming Property

Specifies the trimming mode applied to text when it does not completely fit into the label.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

[Browsable(true)]
public override DXStringTrimming TextTrimming { get; set; }

#Property Value

Type Description
DXStringTrimming

An enumeration value that indicates how to trim characters.

Available values:

Name Description
None

No trimming is specified.

Character

The text is trimmed to the nearest character.

Word

The text is trimmed to the nearest word.

EllipsisCharacter

The text is trimmed to the nearest character, and an ellipsis is inserted at the end of a trimmed line.

EllipsisWord

The text is trimmed to the nearest word, and an ellipsis is inserted at the end of a trimmed line.

EllipsisPath

The center is removed from trimmed lines and replaced by an ellipsis. The algorithm keeps as much of the last slash-delimited segment of the line as possible.

#Remarks

The TextTrimming property does not affect how the text is trimmed if it is justified. This means that the TextAlignment property should not be set to TopJustify, MiddleJustify, or BottomJustify, when you specify the TextTrimming value.

See Also