RichEditBuilder.Height(Int32) Method
Specifies the Rich Text Editor’s height on the page.
Namespace: DevExpress.AspNetCore.RichEdit
Assembly: DevExpress.AspNetCore.RichEdit.v22.2.dll
NuGet Package: DevExpress.AspNetCore.RichEdit
Declaration
public RichEditBuilder Height(
int height
)
Parameters
Name | Type | Description |
---|---|---|
height | Int32 | A value specifying the Rich Text Editor’s height. |
Returns
Type | Description |
---|---|
RichEditBuilder | A RichEditBuilder that can be used to further configure the Rich Text Editor. |
Remarks
@(Html.DevExpress().RichEdit("richEdit")
.Height(600)
.ConfirmOnLosingChanges(c => c.Enabled(false))
.Open("Documents/Example.docx")
)
See Also