Method: Select for ReportObject
- Updated2024-09-12
- 1 minute(s) read
DIAdem REPORT > Methods > Method: Select for ReportObject
Method: Select for ReportObject
Selects an object in DIAdem REPORT.
Object.Select()
| Object | ReportObject Object with this method |
The following example selects all objects containing the comment "Selected":
| VBScript | Python |
Dim oMyReportObj, oMyReportObjects Set oMyReportObjects = Report.ActiveSheet.Objects For Each oMyReportObj in oMyReportObjects If oMyReportObj.TagStored = "Selected" Then Call oMyReportObj.Select() End If Next