Object: 3DPlaneYZBackgroundImage
- Updated2024-09-12
- 1 minute(s) read
(ReportObjects | SelectedObjects) > 3DAxisSystem > 3DAxisSettings > 3DPlaneYZ > Object: 3DPlaneYZBackgroundImage
Object: 3DPlaneYZBackgroundImage
The 3DPlaneYZBackgroundImageobject provides the properties of a background graphic of the yz-plane in a 3D axis system, in DIAdem REPORT.
The following example generates a 3D axis system with a curve and a background graphic in the yz-plane:
| VBScript | Python |
Dim oMy3DAxisSystem, oMy3DCurve, oMyPos, oMySettings, oMyBackground Report.NewLayout Call Data.Root.Clear() Call DataFileLoad(DataReadPath & "Report_Data.tdm","TDM","") 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 Set oMyBackground = oMySettings.PlaneYZ.BackgroundImage oMyBackground.FileName = "Example1.png" Call MsgBox(oMyBackground.FullPath) Call Report.Refresh()