MemoEdit.AppendLine(String) Method
Appends the specified string as a new line to EditValue.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.XtraEditors.v24.1.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