Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

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.
C#
public HTMLInsertProperties InsertProperties{ get; }
vb.net
Public ReadOnly Property InsertProperties() As HTMLInsertProperties

Examples

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;
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
  • No labels