Contains settings that control how unsupported HTML tags are treated and provides an override to the default font used when inserting text into the document.

public HTMLInsertProperties InsertProperties{ get; }
Public ReadOnly Property InsertProperties() As HTMLInsertProperties
 //--- Get the current settings.
 HTMLToWord.HTMLInsertProperties htmlProps = h2w.InsertProperties;

 //--- Tell HTMLToWord to skip XHTML tags that it does not explicitly handle.
 h2w.InsertProperties.InsertContentsOfUnknownTags = false;
 '--- Get the current settings.
 Dim htmlProps As HTMLToWord.HTMLInsertProperties = h2w.InsertProperties

 '--- Tell HTMLToWord to skip XHTML tags that it does not explicitly handle.
 h2w.InsertProperties.InsertContentsOfUnknownTags = False