Back to Devexpress

MemoEdit.Properties Property

windowsforms-devexpress-dot-xtraeditors-dot-memoedit-04174dbf.md

latest3.1 KB
Original Source

MemoEdit.Properties Property

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

Declaration

csharp
[DXCategory("Properties")]
[SmartTagSearchNestedProperties]
public RepositoryItemMemoEdit Properties { get; }
vb
<DXCategory("Properties")>
<SmartTagSearchNestedProperties>
Public ReadOnly Property Properties As RepositoryItemMemoEdit

Property Value

TypeDescription
RepositoryItemMemoEdit

A RepositoryItemMemoEdit object instance containing settings for the MemoEdit control.

|

Remarks

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

csharp
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

vb
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

RepositoryItemMemoEdit

MemoEdit Class

MemoEdit Members

DevExpress.XtraEditors Namespace