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

    Appends a new line.

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.XtraEditors.v26.1.dll

    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