Assemblies: IPrxAssemblies;
The Assemblies property returns the collection of development environment objects connected to the regular report.
Sub Main;
Var
MB: IMetabase;
Report: IPrxReport;
Assemb: IPrxAssemblies;
i: Integer;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("Report").Bind As IPrxReport;
Assemb := Report.Assemblies;
i := Assemb.Count;
End Sub Main;
After executing the example the "i" variable contains the number of development environment objects connected to the regular report.
See also: