Skip to main content
A newer version of this page is available. .
Tab

ASPxMemo.Rows Property

Gets or sets the number of text lines displayed by the memo editor.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(0)]
public int Rows { get; set; }

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