DIAdem Help

Method: AddLine for CascadeCurves

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

Method: AddLine for CascadeCurves

Adds an object to the CascadeCurve collection and returns a Line object in the DIAdem VIEW script interface.

Set oLine = Object.AddLine(XNameOrNo, YNameOrNo)
ObjectCascadeCurves
Object with this method
XNameOrNoVariant
Specifies the name or the number of the x-channel to be displayed.
YNameOrNoVariant
Specifies the name or the number of the y-channel to be displayed.
oLineLine
Returned object

The following example creates a cascade display and adds a waterfall curve and an order line:

VBScriptPython

 

Call Data.Root.Clear()
Call DataFileLoad(ProgramDrv & "Examples\Data\cascade.tdm","TDM","")
Dim oMyDisplayObj, oMyCascadeCurve, oMyLineCurve
Call View.NewLayout
View.Sheets(1).Areas(1).DisplayObjType = "Cascade" 
Set oMyDisplayObj = View.Sheets(1).Areas(1).DisplayObj 
Set oMyCascadeCurve = oMyDisplayObj.CurvesCascade.AddCascade("[2]/[1]","[2]/[2]","[2]/[3]")
Set oMyLineCurve = oMyDisplayObj.CurvesCascade.AddLine("[4]/[156]","[4]/[157]")