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

MemoEdit

  • 2 minutes to read

Overview

The MemoEdit control is a dropdown text editor.

MemoEdit

The MemoEdit control offers the following features.

Standalone MemoEdit

To add a standalone MemoEdit to a Window, drag it from the Toolbox.

The following sample demonstrates how to create a MemoEdit using XAML markup.

<dxe:MemoEdit PopupHeight="200" PopupWidth="150" MemoTextWrapping="Wrap"/>

In-place MemoEdit

To embed a MemoEdit into a container control, use the MemoEditSettings class.

The following sample demonstrates how to embed a MemoEdit into a GridControl column.

<dxg:GridControl>
    <dxg:GridColumn FieldName="AdditionalInformation">
        <dxg:GridColumn.EditSettings>
            <dxe:MemoEditSettings/>
        </dxg:GridColumn.EditSettings>
    </dxg:GridColumn>
    <dxg:GridControl.View>
        <dxg:TableView/>
    </dxg:GridControl.View>
</dxg:GridControl>