Back to Devexpress

RichEditDocumentServer.LoadDocument(String) Method

officefileapi-devexpress-dot-xtrarichedit-dot-richeditdocumentserver-dot-loaddocument-x28-system-dot-string-x29.md

latest7.8 KB
Original Source

RichEditDocumentServer.LoadDocument(String) Method

SECURITY-RELATED CONSIDERATIONS

Using file paths sourced from untrusted input may expose unauthorized files or allow unintended file access. Always validate and normalize all external paths to prevent path manipulation.

Loads a document from the specified file. The file format is determined by its content.

Namespace : DevExpress.XtraRichEdit

Assembly : DevExpress.RichEdit.v25.2.Core.dll

NuGet Package : DevExpress.RichEdit.Core

Declaration

csharp
public virtual bool LoadDocument(
    string fileName
)
vb
Public Overridable Function LoadDocument(
    fileName As String
) As Boolean

Parameters

NameTypeDescription
fileNameString

A string that specifies the file to load (including the full path).

|

Returns

TypeDescription
Boolean

true , if the document is successfully loaded; otherwise, false.

|

Remarks

The format of the document loaded from a stream is detected automatically by the built-in IFormatDetectorService service implementation. The following formats are detected:

  • DOC, DOCM, DOTX, DOT, DOTM, DOCX, RTF, HTM, HTML, MHT, XML, FlatOpc, EPUB;
  • ODT - non-encrypted files only;

Plain text cannot be detected automatically. To load a plain text document, use another method override with DocumentFormat.PlainText as a parameter.

If the format detection fails or the passed string value is null , the RichEditDocumentServer.InvalidFormatException event fires.

After loading a document, the DocumentSaveOptions.CurrentFileName property is set to the file name and the DocumentSaveOptions.CurrentFormat property is set to the detected format.

To determine the moment when the document model can be safely modified, use the RichEditDocumentServer.DocumentLoaded event. Handle the DocumentLayout.DocumentFormatted event to check the loaded document layout.

Tip

Define the format explicitly in the LoadDocument method overloads to improve performance.

The following code snippets (auto-collected from DevExpress Examples) contain references to the LoadDocument(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.

word-document-api-examples/CS/CodeExamples/ContentControlsActions.cs#L18

csharp
#region #CreateContentControls
wordProcessor.LoadDocument("Documents\\Simple Form.docx");
Document document = wordProcessor.Document;

word-processing-table-of-contents-practical-guide/CS/Program.cs#L39

csharp
wordProcessor.Options.Hyperlinks.ModifierKeys = PortableKeys.None;
wordProcessor.LoadDocument("Employees.rtf");
Document document = wordProcessor.Document;

word-document-api-print-documents/CS/Program.cs#L25

csharp
{
    server.LoadDocument("Grimm.docx");
    foreach (Section _section in server.Document.Sections)

word-document-api-open-and-save-encrypted-files/CS/Program.cs#L24

csharp
server.Options.Import.EncryptionPassword = "test";
server.LoadDocument("Documents//testEncrypted.docx");

word-document-api-use-multiple-data-sources-for-mail-merge/CS/MailMergeSample/Default.aspx.cs#L37

csharp
if (templateName == "preview1") {
    documentServer.LoadDocument(Page.MapPath("~/App_Data/InvoicesDetail.rtf"));

word-document-api-examples/VB/CodeExamples/NotesActions.vb#L24

vb
' Load a document from a file.
wordProcessor.LoadDocument("Documents//Grimm.docx")
' Access a document.

word-processing-table-of-contents-practical-guide/VB/Program.vb#L35

vb
wordProcessor.Options.Hyperlinks.ModifierKeys = PortableKeys.None
wordProcessor.LoadDocument("Employees.rtf")
Dim document As Document = wordProcessor.Document

word-document-api-print-documents/VB/Program.vb#L14

vb
Using server As New DevExpress.XtraRichEdit.RichEditDocumentServer()
    server.LoadDocument("Grimm.docx")
    For Each _section As Section In server.Document.Sections

word-document-api-open-and-save-encrypted-files/VB/Program.vb#L18

vb
server.Options.Import.EncryptionPassword = "test"
server.LoadDocument("Documents//testEncrypted.docx")
Dim encryptionOptions As EncryptionSettings = New EncryptionSettings()

word-document-api-use-multiple-data-sources-for-mail-merge/VB/MailMergeSample/Default.aspx.vb#L34

vb
If Equals(templateName, "preview1") Then
    documentServer.LoadDocument(Page.MapPath("~/App_Data/InvoicesDetail.rtf"))
    Dim invoices As List(Of Invoice) = New List(Of Invoice)(10)

See Also

RichEditDocumentServer Class

RichEditDocumentServer Members

DevExpress.XtraRichEdit Namespace