PlugInClient (Object)

Member of:

Events collections

Description:

Enables the execution of an Interactive Reporting document event in the 8.0 Interactive Reporting Web Client environment. This object’s properties take a Boolean value, which by default is true.

Example:

This example shows how to disable all Interactive Reporting document events when running in the Interactive Reporting Web Client environment:

Documents["Sample1.bqy"].Events["PlugInClient"].ExecuteOnPostProcess=false
Documents["Sample1.bqy"].Events["PlugInClient"].ExecuteOnPreProcess=false
Documents["Sample1.bqy"].Events["PlugInClient"].ExecuteOnShutDown=false
Documents["Sample1.bqy"].Events["PlugInClient"].ExecuteOnStartUp=false

Properties:

Read-write: ExecuteOnPostProcess as Boolean, ExecuteOnPreProcess as Boolean, ExecuteOnShutDown as Boolean, ExecuteOnStartUp as Boolean.

Read-only: Name as String

Example:

var opts = Sections["Query"].QueryOptions;
var aliasTable = "";
if (opts.UseAliasTable == true)    aliasTable = opts.AliasTable;
else {