Enables the execution of a SmartViewClient document event in the 9.0 client environment.
The ExecuteOnStartup (Property), ExecuteOnShutDown (Property), ExecuteOnPreProcess (Property), and ExecuteOnPostProcess (Property) under the SmartViewClient object must have default settings of “False” if the document was created before version 8.0. |
This example shows how to disable all document events when running in the Scheduler environment:
Documents["Sample 1.bqy"].Events["SmartViewClient"].ExecuteOnPostProcess=false Documents["Sample 1.bqy"].Events["SmartViewClient"].ExecuteOnPreProcess=false Documents["Sample 1.bqy"].Events["SmartViewClient"].ExecuteOnShutdown=false Documents["Sample 1.bqy"].Events["SmartViewClient"].ExecuteOnStartup=false
Read-write: ExecuteOnPostProcess as Boolean, ExecuteOnPreProcess as Boolean, ExecuteOnShutDown as Boolean, ExecuteOnStartUp as Boolean.