Object: 2DConstantX1Object
- Updated2024-09-12
- 1 minute(s) read
(2DConstant | 2DCoordinate) > Object: 2DConstantX1Object
Object: 2DConstantX1Object
The 2DConstantX1Object object provides the second x-constant of a curve in the display mode Constant in a 2D axis system in DIAdem REPORT.
The following example generates a 2D axis system with two x-constants and two y-constants:
| VBScript | Python |
Dim oMy2DAxisSystem, oMyPos, oMy2DCurve 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(e2DShapeConstant, "MyNew2DCurve") oMy2DCurve.Shape.XConstant.Reference = 10 oMy2DCurve.Shape.X1Constant.Reference = 80 oMy2DCurve.Shape.YConstant.Reference = 30 oMy2DCurve.Shape.Y1Constant.Reference = 70 Call Report.Refresh()