![]() | DIAdem 2017 Help |
![]() | DIAdem 2018 Help |
![]() | DIAdem 2019 Help |
![]() | DIAdem 2020 Help |
![]() | DIAdem 2020 SP1 Help |
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:
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)
Helpful
Not Helpful