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

    Appends a new line.

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.XtraEditors.v25.2.dll

    NuGet Package: DevExpress.Win.Navigation

    Declaration

    public void AppendLine(
        string value
    )

    Parameters

    Name Type Description
    value String

    The new line.

    Remarks

    The AppendLine method adds the specified string followed by a line terminator (\r\n) to the end of the text.

    memoEdit.AppendLine("New line...");
    
    See Also