Skip to main content

FormItemBase.TextLineBreakMode Property

Specifies the line breaking mode for the font item’s text. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public LineBreakMode TextLineBreakMode { get; set; }

Property Value

Type Description
LineBreakMode

A value that specifies how the text is truncated or broken to lines.

Example

The markup below adds a text header to a form item and specifies text settings:

<dxe:FormItem Text="Brightness level"
              TextColor="Gray"
              TextFontAttributes="Bold"
              TextFontFamily="OpenSansRegular"
              TextFontSize="18"
              TextLineBreakMode="CharacterWrap"
              TextMargin="4"
              TextMaxLineCount="2"/>
See Also