Type: String
Returns a string with the version number of the Adobe Acrobat plug-in, if installed.
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 an empty string.
In some cases with IE on Windows 32 and 64-bit platforms this property may only be able to return the major version number of the installed Acrobat plug-in, and not the full version number. For example, the user may have version 6.01 installed but this property will still contain just a value of "6". So a return result of "6" means at least version 6.0, whereas a returned version of "6.0.0" would mean it is indeed 6.0. In most cases the full version information will be returned (such as "6.0.0" or "6.0.2").
When checking for this plug-in, some users of Internet Explorer with Acrobat 4 will see the Acrobat splash screen displayed briefly. This is an unfortunate side effect that cannot be worked around. This does not occur with Acrobat versions 5 and higher.
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("Plugin_AcrobatVerEx");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
Plugin_ AcrobatVerEx: <% Response.Write(extBrow.Plugin_AcrobatVerEx); %>
</html>
See Also: