Type Default Value Read Only Description
[C#]
IHtmlGeckoOptions

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

 

   

Notes
 

The HTML options supported by the ABCGecko HTML engine.

Supported methods

Supported properties

The HttpAdditionalHeaders property is supported under some circumstances but because these are unusual it is not included in this interface. For details see the documentation for this property.

 

   

Example
 

 

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