DIAdem Help

Object: 2DFilledArea

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

Object: 2DFilledArea

The 2DFilledArea object provides the curve properties of a 2D axis system in the Filled Area display mode in DIAdem REPORT.

The following example generates a 2D axis system with a filled curve and specifies the curve parameters:

VBScriptPython

 

Dim oMy2DAxisSystem, oMyCurve, oMyPos, oMyShape, oMySettings
Call Data.Root.Clear()
Call DataFileLoad(DataReadPath & "Report_Data.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 oMyCurve = oMy2DAxisSystem.Curves2D.Add(e2DShapeFilledArea, "MyCurve")
Set oMyShape = oMyCurve.Shape
oMyShape.XChannel.Reference = "[2]/[1]" 
oMyShape.YChannel.Reference = "[2]/[2]" 
oMyShape.YChannelDifferential.Reference = "[2]/[3]" 
Set oMySettings = oMyShape.Settings
Call oMySettings.Line.Color.SetPredefinedColor(eColorIndexBlue)
oMySettings.Line.Width = eLineWidth0100
oMySettings.FillEffects.Pattern = eFillPatternFilled
Call oMySettings.FillEffects.Color.SetPredefinedColor(eColorIndexRed)
Call Report.Refresh()

Returned From

2DCurve.Shape