Object: 2DConstant
- Updated2024-09-12
- 1 minute(s) read
(2DAxisSystem | Collections) > 2DCurves > 2DCurve > Object: 2DConstant
Object: 2DConstant
The 2DConstant object provides the curve properties of a 2D axis system in the Constant display mode in DIAdem REPORT.
The following example generates an axis system with a curve. In addition, the example generates an x-constant and a y-constant:
VBScript | Python |
Dim oMy2DAxisSystem, oMyCurveLine, oMyCurveConst, oMyPos, oMySettings, oMyLineShape, oMyConstShape 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 oMyCurveLine = oMy2DAxisSystem.Curves2D.Add(e2DShapeLine, "MyCurve") Set oMyLineShape = oMyCurveLine.Shape oMyLineShape.XChannel.Reference = "[1]/[1]" oMyLineShape.YChannel.Reference = "[1]/[2]" Set oMyCurveConst = oMy2DAxisSystem.Curves2D.Add(e2DShapeConstant, "MyConstant") Set oMyConstShape = oMyCurveConst.Shape oMyConstShape.XConstant.Reference = 10 oMyConstShape.YConstant.Reference = 20 Set oMySettings = oMyCurveConst.Shape.Settings Call oMySettings.Line.Color.SetPredefinedColor(eColorIndexBlue) oMySettings.Line.Width = eLineWidth0100 Call Report.Refresh()
Properties
Extensions | Settings | X1Constant | XConstant | Y1Constant | YConstant