SubDocument.InsertDocumentContent(DocumentPosition, String) Method
Inserts content from the file in the current document at the specified position.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v24.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
Parameters
Name | Type | Description |
---|---|---|
pos | DocumentPosition | A DocumentPosition specifying the position in the current document, after which content is inserted. |
fileName | String | A string representing a filename of the document whose content is being inserted. |
Returns
Type | Description |
---|---|
DocumentRange | A DocumentRange representing the document range with inserted content. |
Remarks
The InsertDocumentContent method imports the specified file into the internal document model.
If the format auto detect fails, a fallback format is used. Currently the fallback format is plain text.
After the file is successfully imported, the new document model is inserted at the specified position of the main document.
The inserted text starts with a new paragraph and preserves formatting. It is inserted into an existing section and gets all section details (header, footer, page and print layout).
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.