TextOptions.DefaultOptionsNoWrapEx Property
In This Article
Gets an object whose settings force text to be centered and prevent it from wrapping.
Namespace: DevExpress.Utils
Assembly: DevExpress.Utils.v24.2.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
#Declaration
public static TextOptions DefaultOptionsNoWrapEx { get; }
#Property Value
Type | Description |
---|---|
Text |
A Text |
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Default |
---|---|
Appearance |
|
Text |
|
Text |
|
Text |
|
Text |
|
Text |
Default
|
#Remarks
This property returns an object whose settings are set as follows:
- TextOptions.HAlignment to HorzAlignment.Near;
- TextOptions.VAlignment to VertAlignment.Center;
- TextOptions.Trimming to Trimming.EllipsisCharacter;
- TextOptions.WordWrap to WordWrap.NoWrap.
See Also