Object: 3DPlaneXYBackgroundImage
- Updated2024-09-12
- 1 minute(s) read
(ReportObjects | SelectedObjects) > 3DAxisSystem > 3DAxisSettings > 3DPlaneXY > Object: 3DPlaneXYBackgroundImage
Object: 3DPlaneXYBackgroundImage
The 3DPlaneXYBackgroundImage object provides the properties of a background graphic of the xy-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 xy-plane:
| VBScript | Python |
Dim oMy3DAxisSystem, oMy3DCurve, oMyPos, oMySettings, oMyBackground, oMyScaling 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.PlaneXY.BackgroundImage oMyBackground.FileName = "Example1.png" Set oMyScaling = oMyBackground.Scaling oMyScaling.Enable = True oMyScaling.XBegin = 0.2 oMyScaling.XEnd = 0.8 oMyScaling.YBegin = 0.2 oMyScaling.YEnd = 0.8 Call Report.Refresh()