Method: Select for Image
- Updated2024-09-12
- 1 minute(s) read
DIAdem REPORT > Methods > Method: Select for Image
Method: Select for Image
Selects a graphic in DIAdem REPORT.
Object.Select()
| Object | Image Object with this method |
The following example generates a graphic in the current worksheet, selects this graphic, and then displays whether the graphic is selected:
| VBScript | Python |
Dim oMyImage Call Report.NewLayout() Set oMyImage = Report.ActiveSheet.Objects.Add(eReportObjectImage,"MyImage") Call oMyImage.Select() Call MsgBoxDisp(oMyImage.IsSelected)