DxHtmlEditor.Height Property
In This Article
Specifies the component height.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[Parameter]
public string Height { get; set; }
#Property Value
Type | Description |
---|---|
String | The height in CSS units. |
#Remarks
Use Height
and Width properties to specify the size of the DxHtmlEditor component.
Razor
<DxHtmlEditor Markup="@Markup"
Height="200px"
Width="100%" />
@code {
string Markup = "Document content";
}
See Also