RichEditControl.LoadDocument Method
Name | Parameters | Description |
---|---|---|
Load |
none | Invokes the “Open…” file dialog, creates a specific importer and loads the file. |
Load |
buffer, format, source |
Loads a document in the specified format from a byte array. You can use this method to load HTML documents with connected files. |
Load |
buffer, format | Loads a document in the specified format from a byte array. |
Load |
buffer | Loads a document from a byte array. The file format is determined based on document content. |
Load |
stream, document |
Loads a document from a stream, specifying the document format and optionally leaving the stream open. |
Load |
stream, document |
Loads a document from the stream in the specified format. External content for HTML format is retrieved using the specified source (base) URI. |
Load |
stream, document |
Loads a document from a stream, specifying the document format. |
Load |
stream | Loads a document from the stream. |
Load |
file |
Loads a document from the file in the specified format. External content for HTML format is retrieved using the specified source (base) URI. |
Load |
file |
Loads a document from a file, specifying the document format. |
Load |
file |
Loads a document from the specified file. The file format is determined by its content. |
Load |
parent | Invokes the Open file dialog as a child of the specified parent window. |