MemoEdit.AppendLine(String) Method
In This Article
Appends the specified string as a new line to EditValue.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.XtraEditors.v24.2.dll
NuGet Package: DevExpress.Win.Navigation
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
value | String | The new line. |
#Remarks
// Appends the following string "this is a new line...\r\n"
memoEdit1.AppendLine("this is a new line...");
See Also