Property: Curves3D for 3DAxisSystem
- Updated2024-09-12
- 1 minute(s) read
DIAdem REPORT > Properties > Property: Curves3D for 3DAxisSystem
Property: Curves3D for 3DAxisSystem
Returns a collection of all curves in a 3D axis system in DIAdem REPORT.
Set o3DCurves = Object.Curves3D
Object | 3DAxisSystem Object with this property |
o3DCurves | 3DCurves Returned object |
The following example generates a 3D axis system with a surface:
VBScript | Python |
Dim oMy3DAxisSystem, oMypos, oMy3DCurve Call Report.NewLayout() Call Data.Root.Clear() Call DataFileLoad(DataReadPath & "Report_Data.tdm","TDM","") Set oMy3DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject3DAxisSystem,"My3DAxisSystem") Set oMyPos = oMy3DAxisSystem.Position.ByCoordinate oMyPos.X1 = 20 oMyPos.X2 = 80 oMyPos.Y1 = 20 oMyPos.Y2 = 80 Set oMy3DCurve = oMy3DAxisSystem.Curves3D.Add(e3DShapeSurface, "MyNew3DCurve") oMy3DCurve.Shape.XChannel.Reference = "[2]/[1]" oMy3DCurve.Shape.YChannel.Reference = "[2]/[2]" oMy3DCurve.Shape.ZChannel.Reference = "[2]/[3]" oMy3DCurve.Shape.DataStructure = e3DDataStructureMatrix Call Report.Refresh()