DIAdem Help

Object: 2DLineSettings

  • Updated2024-09-12
  • 1 minute(s) read

Object: 2DLineSettings

The 2DLineSettings object provides the curve properties of a 2D axis system in the display mode Line display mode in DIAdem REPORT.

The following example generates an axis system with a smoothed curve and a non-smoothed curve:

VBScriptPython

 

Dim oMy2DAxisSystem, oMyCurve1, oMyCurve2, oMyPos, oMyShape1, oMyShape2
Call Data.Root.Clear
Call DataFileLoad(DataReadPath & "Example.tdm","TDM","")
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 oMyCurve1 = oMy2DAxisSystem.Curves2D.Add(e2DShapeLine, "MyCurve1")
Set oMyShape1 = oMyCurve1.Shape
oMyShape1.XChannel.Reference = ""
oMyShape1.YChannel.Reference = "[4]/[1]"
oMyCurve1.Shape.Settings.UseCurveSmoothing = False
Set oMyCurve2 = oMy2DAxisSystem.Curves2D.Add(e2DShapeLine, "MyCurve2")
Set oMyShape2 = oMyCurve2.Shape
oMyShape2.XChannel.Reference = "" 
oMyShape2.YChannel.Reference = "[4]/[1]" 
oMyCurve2.Shape.Settings.UseCurveSmoothing = True
Call Report.Refresh()

Returned From

2DLine.Settings