Skip to main content

TextOptions.WordWrap Property

Gets or sets text wrapping mode.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

[DefaultValue(WordWrap.Default)]
[XtraSerializableProperty]
public virtual WordWrap WordWrap { get; set; }

Property Value

Type Default Description
WordWrap Default

A WordWrap value that specifies text wrapping mode.

Available values:

Name Description
Default

Default wrapping mode. The actual wrapping mode is determined by a control.

NoWrap

The word wrapping feature is disabled.

Wrap

The word wrapping feature is enabled.

Property Paths

You can access this nested property as listed below:

Object Type Path to WordWrap
AppearanceObject
.TextOptions .WordWrap
TextOptions
.DefaultOptions .WordWrap
TextOptions
TextOptions
TextOptions
TextOptions

Remarks

Any string is displayed on-screen within a specific rectangle. When text wrapping is enabled the string wraps at the right edge of the rectangle, otherwise the string is displayed in a single line. The TextOptions.Trimming property specifies how the string is rendered when it doesn’t completely fit into the rectangle.

When an AppearanceObject’s style setting (for example, BackColor, ForeColor, Font and TextOptions.HAlignment) is set to a non-default value, the corresponding Options.Use… option (for instance, Options.UseBackColor, Options.UseForeColor, Options.UseFont and Options.UseTextOptions) is automatically set to true in the following cases:

  • The AppearanceObject belongs to a control/component (or its element), and this control/component has been completely loaded (see the control’s IsLoading property to check the load status);
  • The AppearanceObject belongs to a grid column/band or tree list column/band, and the column/band belongs to a grid/tree list control;
  • The AppearanceObject is standalone, that is, it does not belong to any control or component.

In other cases, the Options.Use… options are not automatically enabled. You may need to enable these options manually for the style settings to be in effect.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the WordWrap property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also