Plugin_CrystalReports Property (.NET)

 

Type: Integer

 

Returns an integer indicating whether the user has the Seagate Crystal Reports plug-in installed. The returned value is 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: Use of this property requires the Enterprise Edition of BrowserHawk.

 

C# Example:

<%

ExtendedOptions options = new ExtendedOptions();

options.AddProperties("Plugin_CrystalReports");

ExtendedBrowserObj extBrow = BrowserObj.GetExtendedBrowser(options);

%>

<html>

Plugin_CrystalReports: <% Response.Write(extBrow.Plugin_CrystalReports); %>

</html>