DIAdem Help

Object: 2DBackgroundSegment

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

Object: 2DBackgroundSegment

The 2DBackgroundSegment object provides the background segment of a 2D axis system in DIAdem REPORT.

The following example generates a 2D axis system with a curve and uses background segments to mark curve sections:

VBScriptPython

 

Dim oMy2DAxisSystem, oMyPosition, oMyCurve, oMySegement
Call Data.Root.Clear()
Call DataFileLoad(ProgramDrv & "examples\data\Segment.tdm","TDM","")
Call Report.NewLayout()
Set oMy2DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem,"My2DAxisSystem")
Set oMyPosition = oMy2DAxisSystem.Position.ByCoordinate
oMyPosition.X1 = 20
oMyPosition.Y1 = 20
oMyPosition.X2 = 80
oMyPosition.Y2 = 80
Set oMyCurve = oMy2DAxisSystem.Curves2D.Add(e2DShapeLine, "MyCurve")
oMyCurve.Shape.XChannel.Reference = "[1]/[1]"
oMyCurve.Shape.YChannel.Reference = "[1]/[2]"
Set oMySegement = oMy2DAxisSystem.Settings.BackgroundSegments.Add
Call oMySegement.Color.SetPredefinedColor(eColorIndexYellow)
oMySegement.XChannel.Reference = "[1]/[3]"
oMySegement.YChannel.Reference = "[1]/[4]"
Call Report.Refresh()