windowsforms-devexpress-dot-xtraeditors-dot-memoedit-04174dbf.md
Gets an object containing properties and methods specific to a memo editor.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
[DXCategory("Properties")]
[SmartTagSearchNestedProperties]
public RepositoryItemMemoEdit Properties { get; }
<DXCategory("Properties")>
<SmartTagSearchNestedProperties>
Public ReadOnly Property Properties As RepositoryItemMemoEdit
| Type | Description |
|---|---|
| RepositoryItemMemoEdit |
A RepositoryItemMemoEdit object instance containing settings for the MemoEdit control.
|
See RepositoryItemMemoEdit to learn more.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Properties property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-memo-editor-advanced-mode/CS/MemoEditSample/Views/DemoView.cs#L17
fluent.SetBinding(memoEdit, me => me.RightToLeft, x => x.RightToLeft);
fluent.SetBinding(memoEdit.Properties, me => me.WordWrap, x => x.WordWrap);
fluent.SetBinding(memoEdit.Properties, me => me.UseAdvancedMode, x => x.UseAdvancedMode);
winforms-memo-editor-advanced-mode/VB/MemoEditSample/Views/DemoView.vb#L20
fluent.SetBinding(memoEdit, Function([me]) [me].RightToLeft, Function(x) x.RightToLeft)
fluent.SetBinding(memoEdit.Properties, Function([me]) [me].WordWrap, Function(x) x.WordWrap)
fluent.SetBinding(memoEdit.Properties, Function([me]) [me].UseAdvancedMode, Function(x) x.UseAdvancedMode)
See Also