Aspose::Words::Loading::BlockImportMode enum

BlockImportMode enum

Specifies how properties of block-level elements are imported from HTML-based documents.

enum class BlockImportMode

Values

NameValueDescription
Merge0Properties of parent blocks are merged and stored on child elements (i.e. paragraphs or tables).
Preserve1Properties of parent blocks are imported to a special logical structure and are stored separately from document nodes.

Examples

Shows how properties of block-level elements are imported from HTML-based documents.

const System::String html = u"\r\n            <html>\r\n                <div style='border:dotted'>\r\n                    <div style='border:solid'>\r\n                        <p>paragraph 1</p>\r\n                        <p>paragraph 2</p>\r\n                    </div>\r\n                </div>\r\n            </html>";
auto stream = System::MakeObject<System::IO::MemoryStream>(System::Text::Encoding::get_UTF8()->GetBytes(html));

auto loadOptions = System::MakeObject<Aspose::Words::Loading::HtmlLoadOptions>();
// Set the new mode of import HTML block-level elements.
loadOptions->set_BlockImportMode(blockImportMode);

auto doc = System::MakeObject<Aspose::Words::Document>(stream, loadOptions);
doc->Save(get_ArtifactsDir() + u"HtmlLoadOptions.BlockImport.docx");

See Also