DIAdem Help

Collection: ReportObjects

  • Updated2024-09-12
  • 1 minute(s) read

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:

VBScriptPython

 

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)

Properties

Count

Methods

Add | Copy | Exists | Item | Remove | RemoveAll

Returned From

Sheet.Objects

Log in to get a better experience