DxHtmlEditor.Visible Property
Specifies whether the HTML Editor is visible.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(true)]
[Parameter]
public bool Visible { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Remarks
Set the Visible
property to false
to hide the HTML Editor.
<DxHtmlEditor Markup="@Markup"
Visible="false"
Height="200px"
Width="100%" />
@code {
string Markup = "Document content";
}
See Also