Images: ITabImages;
The Images property returns the object, containing table images collection.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
MB: IMetabase;
Rep: IEaxAnalyzer;
Tab: ITabSheet;
Begin
MB:=MetabaseClass.Active;
Rep:=MB.ItemById("EXP_REP").Bind As IEaxAnalyzer;
Tab:=Rep.Grid.TabSheet;
ImageBox1.Image:=Tab.Images.Item(0);
End Sub Button1OnClick;
After executing the example, on clicking the button into the component named ImageBox1 will be loaded the first image of the table of the express report with the EXP_REP identifier.
See also: