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.
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
Read-write: ExecuteOnPostProcess as Boolean, ExecuteOnPreProcess as Boolean, ExecuteOnShutDown as Boolean, ExecuteOnStartUp as Boolean.
var opts = Sections["Query"].QueryOptions; var aliasTable = ""; if (opts.UseAliasTable == true) aliasTable = opts.AliasTable; else {