![]() | DIAdem 2017 Help |
![]() | DIAdem 2018 Help |
![]() | DIAdem 2019 Help |
![]() | DIAdem 2020 Help |
![]() | DIAdem 2020 SP1 Help |
Specifies the properties of a 3D display in DIAdem REPORT.
Set o3DAxisSettings = Object.Settings
Object | 3DAxisSystem Object with this property |
o3DAxisSettings | 3DAxisSettings Returned object |
The following example generates a 3D axis system with a 2D matrix display and specifies the angles in such a way that you get a view of the xy-plane:
Dim oMy3DAxisSystem, oMy3DCurve, oMyPos, oMySettings Call Data.Root.Clear() Call DataFileLoad(DataReadPath & "Report_Data.tdm","TDM","") Call Report.NewLayout() Set oMy3DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject3DAxisSystem,"My3DAxisSystem") Set oMy3DCurve = oMy3DAxisSystem.Curves3D.Add(e3DShapeMatrix2D, "MyNew3DCurve") Set oMyPos = oMy3DAxisSystem.Position.ByCoordinate oMyPos.X1 = 20 oMyPos.X2 = 80 oMyPos.Y1 = 20 oMyPos.Y2 = 80 oMy3DCurve.Shape.XChannel.Reference = "[2]/[1]" oMy3DCurve.Shape.YChannel.Reference = "[2]/[2]" oMy3DCurve.Shape.ZChannel.Reference = "[2]/[3]" Set oMySettings = oMy3DAxisSystem.Settings oMySettings.RotationAngleXY = 90 oMySettings.RotationAngleZ = 270 Call Report.Refresh()
Helpful
Not Helpful