Type: String
Returns a string with the build number of the Media Player plug-in, if installed. For example, "6,0,14,20" under IE on Windows and "6.0" under Netscape.
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.
The format of this property is different for IE on Windows Vs. all other platforms. IE on Windows will return the string in "x,y,z,a" format, whereas all other platforms will be in "x.z" format (i.e. 6,0,1,21 Vs. 6.01).
C# Example:
<%
ExtendedOptions options = new ExtendedOptions();
options.AddProperties("Plugin_MediaPlayerVerEx");
ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);
%>
<html>
Plugin_MediaPlayerVerEx: <% Response.Write(extBrow.Plugin_MediaPlayerVerEx); %>
</html>
See Also: