ImagesEnabled Property (.NET)

 

Type: Boolean

 

Returns True if the browser is configured to display images, or False if the user has disabled images.

 

Note: Use of this property requires the Professional or Enterprise Edition of BrowserHawk.

 

C# Example:

<%

ExtendedOptions options = new ExtendedOptions();

options.AddProperties("ImagesEnabled"); // you can use "browsersize" instead of "HeightAvail, WidthAvail"

ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);

%>

<html>

ImagesEnabled: <% Response.Write(extBrow.ImagesEnabled); %>

</html>

 

 

Special notes for this property: