Collection: ReportObjects
- Updated2024-09-12
- 1 minute(s) read
(Collections | Sheet) > Collection: ReportObjects
Collection: ReportObjects
Collection of all ReportObject objects in DIAdem REPORT. Use the ReportObjects collection to delete or to create new objects for the graphical display.
The following example displays the types and the names of all objects:
VBScript | Python |
Dim oMyReportObjects, oMyReportObj, sOutput sOutput = "" Set oMyReportObjects = Report.ActiveSheet.Objects For Each oMyReportObj in oMyReportObjects sOutput = sOutput & "Object type: " & oMyReportObj.ObjectType & vbTab & _ "Object name: " & oMyReportObj.Name & vbCrLf Next Call MsgBoxDisp(sOutput)