{description}
{excerpt}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.{excerpt}
{signature:C#}
 public HTMLInsertProperties InsertProperties{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property InsertProperties() As HTMLInsertProperties
{signature}
{example}{code:csharp|title=C#}

 //--- 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;
        {code}
{code:vb.net|title=vb.net}

 '--- 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
        {code}

{example}