Type: Integer
Returns an integer indicating whether the user has the QuickTime plug-in installed. The returned value will be one of the following:
0: The plug-in is not installed*
1: The plug-in is installed
-1: It is not possible to detect if the plug-in is installed
* Note: For Internet Explorer on any Windows platform, a value of 0 indicates that either the QuickTime plug-in is not installed, or a version of QuickTime prior to version 4.1.1 is installed. This is because versions of QuickTime prior to 4.1.1 are not detectable with IE on Windows.
Note: Use of this property requires the Professional or Enterprise Edition of BrowserHawk.
Special notes for this property:
Not all browsers are capable of having their plug-ins detected. If this is the case the return value will be -1. No version of Internet Explorer is capable of having this plug-in detected.
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("Plugin_QuickTime");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
Plugin_QuickTime: <% Response.Write(extBrow.Plugin_QuickTime); %>
</html>
See Also: