Plugin_AcrobatVerEx Property

 

Type: String

 

Returns a string with the version number of the Adobe Acrobat plug-in, if installed.

 

Note: You must call the GetExtPropertiesEx method before checking the value of this property. This property requires either the Professional or Enterprise Edition of BrowserHawk.

 

Tip: See the extproperties.asp example located in your BrowserHawk directory for detailed information and examples on using this property.

 

Example:

<% set bhObj = Server.CreateObject("cyScape.browserObj")

bhObj.SetExtProperties "plugin_acrobatverex"

bhObj.GetExtPropertiesEx

%>

<html>Acrobat version is:

<%

ver = bhObj.Plugin_AcrobatVerEx

if ver = "" then

PropVal = "Version unavailable"

else

PropVal = ver

end if

response.write PropVal

%>

</html>

 

Special notes for this property:

 

See Also:

GetExtPropertiesEx Method

SetExtProperties Method

Plugin_Acrobat Property

CompareVersions Method