Skip to main content

FormItemBase.DetailLineBreakMode Property

Gets or sets the line break mode for the font item’s detail text. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public LineBreakMode DetailLineBreakMode { 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 secondary text for a form item and configures text options :

<dxe:FormItem Detail="The reading mode adjusts colors and
              textures in order to reduce eye strain."
              DetailColor="LightGray"
              DetailFontAttributes="Italic"
              DetailFontFamily="OpenSansRegular"
              DetailFontSize="14"
              DetailLineBreakMode="TailTruncation"
              DetailMargin="4"
              DetailMaxLineCount="2"/>
See Also