Imports the editor content from a specific stream, based on the provided settings.
Namespace:DevExpress.Web.ASPxHtmlEditor
Assembly:DevExpress.Web.ASPxHtmlEditor.v17.2.dll

Syntax
C# |
public void Import(
HtmlEditorImportFormat format,
Stream inputStream,
bool useInlineStyles
)
|
VB |
Public Sub Import(
ByVal format As HtmlEditorImportFormat,
ByVal inputStream As Stream,
ByVal useInlineStyles As Boolean
)
|
Parameters
-
format
-
Type: HtmlEditorImportFormat
One of the HtmlEditorImportFormat enumeration values specifying the imported file format.
-
inputStream
-
Type: Stream
A System.IO.Stream object from which the editor content is imported.
-
useInlineStyles
-
Type: Boolean
true to embed document formatting styles into the editor content; false to store formatting styles in a separate css file.

See Also