HtmlLoadOptionsSupportVml Property |
Namespace: Aspose.Words
HtmlLoadOptions loadOptions = new HtmlLoadOptions(); // If value is true, then we parse "<!--[if gte vml 1]>", else parse "<![if !vml]>" loadOptions.SupportVml = true; // Wait for a response, when loading external resources loadOptions.WebRequestTimeout = 1000; Document doc = new Document(MyDir + "Conditional comments.htm", loadOptions); doc.Save(ArtifactsDir + "HtmlLoadOptions.SupportVml.docx");