Back to Devexpress

DxHtmlEditor.ReadOnly Property

blazor-devexpress-dot-blazor-dot-dxhtmleditor-ce5aedda.md

latest1.2 KB
Original Source

DxHtmlEditor.ReadOnly Property

Specifies whether the read-only mode is active.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

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

Property Value

TypeDefaultDescription
Booleanfalse

true to activate read-only mode; otherwise, false.

|

Remarks

Enable the ReadOnly property to activate read-only mode. In this mode, the HTML Editor allows you to display the value, but does not allow users to change it.

razor
<DxHtmlEditor Markup="@Markup"
              ReadOnly="true"
              Height="200px"
              Width="100%" />

@code {
    string Markup = "Document content";
}

See Also

DxHtmlEditor Class

DxHtmlEditor Members

DevExpress.Blazor Namespace