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

SubDocument.AppendDocumentContent(DocumentRange, InsertOptions) Method

Appends content from the specified range.

Namespace: DevExpress.XtraRichEdit.API.Native

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

Declaration

DocumentRange AppendDocumentContent(
    DocumentRange range,
    InsertOptions insertOptions
)

Parameters

Name Type Description
range DocumentRange

A DocumentRange to append.

insertOptions InsertOptions

An InsertOptions enumeration value, specifying how destination formatting is applied to inserted content in certain cases.

Returns

Type Description
DocumentRange

A DocumentRange representing a range with the appended content.

Remarks

The AppendDocumentContent method inserts the specified document range at the end of the main document.

The appended text starts with a new paragraph and preserves formatting. It is appended to an existing section and gets all section details (header, footer, page and print layout).

Specify the insertOptions parameter to define how formatting is applied to the formatted text inserted into a document. Refer to the InsertOptions enumeration description for information on how formatting is applied to the pasted document elements depending on the property value.

When the content being inserted is divided into sections, the inserted and destination sections interact as follows:

  • If the content is inserted into an empty document, all inserted section properties are retained.
  • If the content is inserted into a document divided into sections, all but the last inserted sections retain their parameters. The last section takes on the destination section’s options.
  • If the content is inserted after a section break, both destination and inserted sections retain their properties.

If the content is copied without section properties (the last section’s paragraph is not included), the destination section’s settings stay intact after insertion.

If the text being inserted contains document styles which are not present in the current document, the styles are copied to the resulting document.

If the document whose content is being inserted contains floating objects, such as pictures or text boxes, they are inserted into the corresponding positions in a newly created range. The Shape.Range property of a floating object determines whether it falls within the range being inserted and will therefore be added to the resulting document.

See Also