Object: 3DPlaneYZ
- Updated2024-09-12
- 1 minute(s) read
(ReportObjects | SelectedObjects) > 3DAxisSystem > 3DAxisSettings > Object: 3DPlaneYZ
Object: 3DPlaneYZ
The 3DPlaneYZ object provides the properties of the yz-plane in a 3D axis system in DIAdem REPORT.
The following example generates a surface display and displays the planes in different colors:
| VBScript | Python |
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(e3DShapeSurface, "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 Call oMySettings.PlaneXY.BackgroundColor.SetPredefinedColor(eColorIndexBlue ) Call oMySettings.PlaneXZ.BackgroundColor.SetPredefinedColor(eColorIndexGreen) Call oMySettings.PlaneYZ.BackgroundColor.SetPredefinedColor(eColorIndexYellow) Call Report.Refresh()
Properties
BackgroundColor | BackgroundImage | BorderLine | Grid | Offset | Type