ASPxMemo.Rows Property
In This Article
Gets or sets the number of text lines displayed by the memo editor.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
Int32 | 0 | An integer value specifying the number of rows within the editor. |
#Remarks
This property is a wrapper of the MemoProperties.Rows property.
#Example
The complete sample project is available in the DevExpress Code Central database at E55.
...
<dxe:ASPxMemo ID="txtContentText" runat="server" Columns="40" Rows="4" Text="Default Content Text">
</dxe:ASPxMemo>
...
See Also