Richiamo di un report tramite API

Creare un riferimento all'assieme "Autodesk.Map.IM.Forms.Report.dll": è necessario definire i parametri nel report prima di impostare un valore in un parametro.

Dim report As Autodesk.Map.IM.Forms.Report.Report 
report = Me.Document.ReportEngine.Reports.Item(ReportName)
report.SetParameter("Filter", "Fid=17)")
report.SetParameter("Title", "Annual Report 2005") 
report.PreView() ‘ Show the Report 

È inoltre possibile salvare il report come HTML tramite l'API.

report.SaveHtml("c:\test.html")