![]() | DIAdem 2017 Help |
![]() | DIAdem 2018 Help |
![]() | DIAdem 2019 Help |
![]() | DIAdem 2020 Help |
![]() | DIAdem 2020 SP1 Help |
Specifies the name of a 3D axis system in DIAdem REPORT.
Object.Name
Object | 3DAxisSystem Object with this property |
Object.Name | String with read and write access |
The following example displays the names of the objects that have the eReportObject3DAxisSystem object type:
Dim oMyReportObj, oMyReportObjects, sOutput sOutput = "" Set oMyReportObjects = Report.ActiveSheet.Objects For Each oMyReportObj in oMyReportObjects If oMyReportObj.ObjectType = eReportObject3DAxisSystem Then sOutput = sOutput & "Object " & oMyReportObj.Name & vbCrLf End If Next Call MsgBoxDisp(sOutput)
Helpful
Not Helpful