Type: Boolean
Returns True if the browser has ActiveX controls enabled, or False if ActiveX controls are disabled.
Tip: See the extproperties.aspx example located in your BrowserHawk\samples\dotnet directory for a working sample which demonstrates detection of this property.
Note: Use of this property requires the Enterprise Edition of BrowserHawk.
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("ActiveXEnabled");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
ActiveXEnabled: <% Response.Write(extBrow. ActiveXEnabled); %>
</html>
Special notes for this property:
ActiveX controls are only available with IE under the Windows 32 and 64-bit platforms. For all other browsers and platforms this property will always return False.
See Also:
JavaScriptEnabled Property (.NET)