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