Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

SubDocument.AppendText(String) Method

Appends the specified text.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v19.1.Core.dll

Declaration

DocumentRange AppendText(
    string text
)

Parameters

Name Type Description
text String

A string containing the text to append.

Returns

Type Description
DocumentRange

A DocumentRange representing a range with the appended text.

Example

document.AppendText("abcdefgh");
DocumentRange r1 = document.AppendText("X");
string s1 = String.Format("Range r1 starts at {0}, ends at {1}", r1.Start, r1.End);
document.AppendText("Y");
document.AppendText("Z");
string s2 = String.Format("Currently range r1 starts at {0}, ends at {1}", r1.Start, r1.End);
document.Paragraphs.Append();
document.AppendText(s1);
document.Paragraphs.Append();
document.AppendText(s2);

The following code snippets (auto-collected from DevExpress Examples) contain references to the AppendText(String) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also