Back to Devexpress

DxHtmlEditor.Visible Property

blazor-devexpress-dot-blazor-dot-dxhtmleditor-404c3e27.md

latest1.0 KB
Original Source

DxHtmlEditor.Visible Property

Specifies whether the HTML Editor is visible.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(true)]
[Parameter]
public bool Visible { get; set; }

Property Value

TypeDefaultDescription
Booleantrue

true to show the component; otherwise, false.

|

Remarks

Set the Visible property to false to hide the HTML Editor.

razor
<DxHtmlEditor Markup="@Markup"
              Visible="false"
              Height="200px"
              Width="100%" />

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

See Also

DxHtmlEditor Class

DxHtmlEditor Members

DevExpress.Blazor Namespace