Collection: 2DCurves
- Updated2024-09-12
- 1 minute(s) read
(2DAxisSystem | Collections) > Collection: 2DCurves
Collection: 2DCurves
Collection of all 2DCurve objects in DIAdem REPORT. Use the 2DCurves collection to delete or to create new curves in 2D axis systems.
The following example generates a 2D axis system with a curve:
| VBScript | Python |
Dim oMy2DaxisSystem, oMy2DCurve, oMyPos Call Report.NewLayout() Set oMy2DaxisSystem = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem,"My2DAxisSystem") Set oMyPos = oMy2DAxisSystem.Position.ByCoordinate oMyPos.X1 = 20 oMyPos.X2 = 80 oMyPos.Y1 = 20 oMyPos.Y2 = 80 Set oMy2DCurve = oMy2DaxisSystem.Curves2D.Add(e2DShapeLine, "MyNew2DCurve") oMy2DCurve.Shape.XChannel.Reference = "[1]/[1]" oMy2DCurve.Shape.YChannel.Reference = "[1]/[2]" Call oMy2DCurve.Shape.Settings.Line.Color.SetPredefinedColor(eColorIndexBlue) Call Report.Refresh()