Type Default Value Read Only Description
[C#]
IHtmlWebKitOptions

[Visual Basic]
IHtmlWebKitOptions
n/a Yes An object that provides access to only the HTML options supported by the ABCWebKit engine.

 

   

Notes
 

The HTML options supported by the ABCWebKit engine.

Supported methods

Supported properties

 

   

Example
 

 

using (Doc doc = new Doc()) {   doc.HtmlOptions.Engine = EngineType.WebKit;   doc.HtmlOptions.ForWebKit.AddLinks = true;   // You can store a reference to the filter to reduce code repetition   IHtmlWebKitOptions options = doc.HtmlOptions.ForWebKit;   options.UseScript = false;   doc.AddImageUrl("http://www.websupergoo.com");   doc.Save(Server.MapPath("wsg.pdf")); }