Back to Devexpress

DxHtmlEditor.AllowSoftLineBreak Property

blazor-devexpress-dot-blazor-dot-dxhtmleditor-8c026bc1.md

latest1.6 KB
Original Source

DxHtmlEditor.AllowSoftLineBreak Property

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

Declaration

csharp
[DefaultValue(false)]
[Parameter]
public bool AllowSoftLineBreak { get; set; }

Property Value

TypeDefaultDescription
Booleanfalse

true to allow users to split content into multiple lines within one block element; otherwise, false.

|

Remarks

<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.

razor
<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

DxHtmlEditor Class

DxHtmlEditor Members

DevExpress.Blazor Namespace