Skip to main content
All docs
V24.1

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

true to show the component; otherwise, false.

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