Method: Select for Image
- Mise à jour2024-09-12
- Temps de lecture : 1 minute(s)
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)