windowsforms-devexpress-dot-utils-dot-textoptions.md
Gets or sets text wrapping mode.
Namespace : DevExpress.Utils
Assembly : DevExpress.Utils.v25.2.dll
NuGet Packages : DevExpress.Utils, DevExpress.Wpf.Core
[DefaultValue(WordWrap.Default)]
[XtraSerializableProperty]
public virtual WordWrap WordWrap { get; set; }
<DefaultValue(WordWrap.Default)>
<XtraSerializableProperty>
Public Overridable Property WordWrap As WordWrap
| 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.
|
You can access this nested property as listed below:
| Object Type | Path to WordWrap |
|---|---|
| AppearanceObject |
.TextOptions .WordWrap
| | TextOptions |
.DefaultOptions .WordWrap
| | TextOptions |
.DefaultOptionsCenteredWithEllipsis .WordWrap
| | TextOptions |
.DefaultOptionsMultiLine .WordWrap
| | TextOptions |
.DefaultOptionsNoWrap .WordWrap
| | TextOptions |
.DefaultOptionsNoWrapEx .WordWrap
|
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:
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.
See Also