HtmlEditorExtension.Import Method
Name | Parameters | Description |
---|---|---|
Import(HtmlEditorImportFormat, Stream, Action<String, IEnumerable<String>>) static | format, inputStream, onImport | Imports the editor content from a specific stream, based on the provided settings. |
Import(HtmlEditorImportFormat, Stream, Boolean, Action<String, IEnumerable<String>>) static | format, inputStream, useInlineStyles, onImport | Imports the editor content from a specific stream, based on the provided settings. |
Import(HtmlEditorImportFormat, Stream, Boolean, String, Action<String, IEnumerable<String>>) static | format, inputStream, useInlineStyles, contentFolder, onImport | Imports the editor content from a specific stream, based on the provided settings. |
Import(HtmlEditorImportFormat, Stream, String, Action<String, IEnumerable<String>>) static | format, inputStream, contentFolder, onImport | Imports the editor content from a specific stream, based on the provided settings. |
Import(HtmlEditorImportFormat, String, Action<String, IEnumerable<String>>) static | format, filePath, onImport | Imports the editor content from a specific file, based on the provided settings. |
Import(HtmlEditorImportFormat, String, Boolean, Action<String, IEnumerable<String>>) static | format, filePath, useInlineStyles, onImport | Imports the editor content from a specific file, based on the provided settings. |
Import(HtmlEditorImportFormat, String, Boolean, String, Action<String, IEnumerable<String>>) static | format, filePath, useInlineStyles, contentFolder, onImport | Imports the editor content from a specific file, based on the provided settings. |
Import(HtmlEditorImportFormat, String, String, Action<String, IEnumerable<String>>) static | format, filePath, contentFolder, onImport | Imports the editor content from a specific file, based on the provided settings. |
Import(String, Action<String, IEnumerable<String>>) static | filePath, onImport | Imports the editor content from a specific file, based on the provided settings. |
Import(String, Boolean, Action<String, IEnumerable<String>>) static | filePath, useInlineStyles, onImport | Imports the editor content from a specific file, based on the provided settings. |
Import(String, Boolean, String, Action<String, IEnumerable<String>>) static | filePath, useInlineStyles, contentFolder, onImport | Imports the editor content from a specific file, based on the provided settings. |
Import(String, String, Action<String, IEnumerable<String>>) static | filePath, contentFolder, onImport | Imports the editor content from a specific file, based on the provided settings. |
Feedback