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:
It is not possible to detect disabled images with Netscape 4.x and earlier or IE 3.x and earlier. These browsers will always return False for this property value.
This test relies on a properly configured Port Check Server.
If the user’s JavaScript is disabled this property will not be available.
You can perform the ImagesEnabled test from a secure page (a page access via https://..) only if you have set up a SSL Port Check Server. Otherwise use of this test from an https page will result in a notice from the browser stating that the page contains a mix of secure and unsecure items.