IUiReport.Report

Syntax

Report: IPrxReport;

Description

The Report property determines a regular report implemented by the IPrxReport interface.

Example

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Var

MB: IMetabase;

Begin

MB := MetabaseClass.Active;

UiReport1.Report := MB.ItemById("Report").Bind As IPrxReport;

UiReport1.Active := True;

End Sub Button1OnClick;

After executing the example clicking the button sets the regular report with the Report identifier as a data source for the UiReport1 component. Then the component is activated.

See also:

IUiReport