HtmlLoadOptions class

HtmlLoadOptions class

Allows to specify additional options when loading HTML document into a Document object. To learn more, visit the Specify Load Options documentation article.

Inheritance: HtmlLoadOptionsLoadOptions

Constructors

NameDescription
HtmlLoadOptions()Initializes a new instance of this class with default values.
HtmlLoadOptions(password)A shortcut to initialize a new instance of this class with the specified password to load an encrypted document.
HtmlLoadOptions(loadFormat, password, baseUri)A shortcut to initialize a new instance of this class with properties set to the specified values.

Properties

NameDescription
baseUriGets or sets the string that will be used to resolve relative URIs found in the document into absolute URIs when required. Can be null or empty string. Default is null.
(Inherited from LoadOptions)
blockImportModeGets or sets a value that specifies how properties of block-level elements are imported. Default value is BlockImportMode.Merge.
convertMetafilesToPngGets or sets whether to convert metafile(Wmf or Emf) images to Png image format.
(Inherited from LoadOptions)
convertShapeToOfficeMathGets or sets whether to convert shapes with EquationXML to Office Math objects.
(Inherited from LoadOptions)
convertSvgToEmfGets or sets a value indicating whether to convert loaded SVG images to the EMF format. Default value is false and, if possible, loaded SVG images are stored as is without conversion.
encodingGets or sets the encoding that will be used to load an HTML, TXT, or CHM document if the encoding is not specified inside the document. Can be null. Default is null.
(Inherited from LoadOptions)
fontSettingsAllows to specify document font settings.
(Inherited from LoadOptions)
ignoreNoscriptElementsGets or sets a value indicating whether to ignore <noscript> HTML elements. Default value is false.
ignoreOleDataSpecifies whether to ignore the OLE data.
(Inherited from LoadOptions)
languagePreferencesGets language preferences that will be used when document is loading.
(Inherited from LoadOptions)
loadFormatSpecifies the format of the document to be loaded. Default is LoadFormat.Auto.
(Inherited from LoadOptions)
mswVersionAllows to specify that the document loading process should match a specific MS Word version. Default value is MsWordVersion.Word2019
(Inherited from LoadOptions)
passwordGets or sets the password for opening an encrypted document. Can be null or empty string. Default is null.
(Inherited from LoadOptions)
preferredControlTypeGets or sets preferred type of document nodes that will represent imported <input> and <select> elements. Default value is HtmlControlType.FormField.
preserveIncludePictureFieldGets or sets whether to preserve the INCLUDEPICTURE field when reading Microsoft Word formats. The default value is false.
(Inherited from LoadOptions)
progressCallbackCalled during loading a document and accepts data about loading progress.
(Inherited from LoadOptions)
resourceLoadingCallbackAllows to control how external resources (images, style sheets) are loaded when a document is imported from HTML, MHTML.
(Inherited from LoadOptions)
supportFontFaceRulesGets or sets a value indicating whether to support @font-face rules and whether to load declared fonts. Default value is false.
supportVmlGets or sets a value indicating whether to support VML images.
tempFolderAllows to use temporary files when reading document. By default this property is null and no temporary files are used.
(Inherited from LoadOptions)
updateDirtyFieldsSpecifies whether to update the fields with the dirty attribute.
(Inherited from LoadOptions)
useSystemLcidGets or sets whether to use LCID value obtained from Windows registry to determine page setup default margins.
(Inherited from LoadOptions)
webRequestTimeoutThe number of milliseconds to wait before the web request times out. The default value is 100000 milliseconds (100 seconds).

See Also