blazor-devexpress-dot-blazor-dot-dxhtmleditor-8c026bc1.md
Specifies whether users can split content into multiple lines within one block element. The Shift+Enter key combination adds a new line.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(false)]
[Parameter]
public bool AllowSoftLineBreak { get; set; }
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true to allow users to split content into multiple lines within one block element; otherwise, false.
|
<DxHtmlEditor> allows users to split content into multiple lines within one block element. Set the AllowSoftLineBreak property to true to enable this behavior. Users can press Shift+Enter to add a new line.
<DxHtmlEditor @bind-Markup="@Markup"
BindMarkupMode="HtmlEditorBindMarkupMode.OnDelayedInput"
AllowSoftLineBreak="true"
Height="200px"
Width="100%" />
<p><b>The result markup:</b> @Markup</p>
@code {
string Markup { get; set; } = "";
}
See Also