EventsClass: String;
The EventsClass property determines the class that is used to handle events.
Sub Main;
Var
MB: IMetabase;
Report: IPrxReport;
Assemb: IPrxAssemblies;
s: String;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("Report").Bind As IPrxReport;
Assemb := Report.Assemblies;
s := Assemb.EventsClass;
End Sub Main;
After executing the example the "s" variable contains name of the class that is used to handle events. The identifier of the regular report - Report.
See also: