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.

<table class="wysiwyg-macro" data-macro-name="unmigrated-wiki-markup" style="background-image: url(/plugins/servlet/confluence/placeholder/macro-heading?definition=e3VubWlncmF0ZWQtd2lraS1tYXJrdXB9&amp;locale=en_GB&amp;version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre>
 public HTMLInsertProperties InsertProperties{ get; }
</pre></td></tr></table>
<p>Public ReadOnly Property InsertProperties() As HTMLInsertProperties</p>

 //--- 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