Skip to main content
All docs
V25.1
  • MemoEdit.AppendLine(String) Method

    Appends the specified string as a new line to EditValue.

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.XtraEditors.v25.1.dll

    NuGet Package: DevExpress.Win.Navigation

    Declaration

    public void AppendLine(
        string value
    )

    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