Back to Devexpress

MemoEdit.AppendLine(String) Method

windowsforms-devexpress-dot-xtraeditors-dot-memoedit-dot-appendline-x28-system-dot-string-x29.md

latest1.5 KB
Original Source

MemoEdit.AppendLine(String) Method

Appends the specified string as a new line to EditValue.

Namespace : DevExpress.XtraEditors

Assembly : DevExpress.XtraEditors.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
public void AppendLine(
    string value
)
vb
Public Sub AppendLine(
    value As String
)

Parameters

NameTypeDescription
valueString

The new line.

|

Remarks

csharp
// Appends the following string "this is a new line...\r\n"
memoEdit1.AppendLine("this is a new line...");
vb
' Appends the following string "this is a new line...\r\n"
memoEdit1.AppendLine("this is a new line...")

See Also

AppendText(String)

MemoEdit Class

MemoEdit Members

DevExpress.XtraEditors Namespace