IPrxAssemblies.EventsClass

Syntax

EventsClass: String;

Description

The EventsClass property determines the class that is used to handle events.

Example

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:

IPrxAssemblies