DIAdem Help

Object: LabelFromChannel

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

Object: LabelFromChannel

The LabelFromChannel object provides the label channel properties of a curve in DIAdem REPORT.

The following example generates a 2D axis system with a curve and displays curve labels from a channel:

VBScriptPython

 

Dim oMy2DAxisSystem, oMyCurve, oMyPos, oMyChnLabel
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(e2DShapeLineAndPoints, "MyCurve")
oMyCurve.Shape.XChannel.Reference = "[6]/[1]" 
oMyCurve.Shape.YChannel.Reference = "[6]/[2]" 
Set oMyChnLabel = oMyCurve.Shape.Extensions.Label.FromChannel
oMyChnLabel.Channel.Reference = "[7]/[1]"
oMyChnLabel.Visible = True
oMyChnLabel.IndexChannel.Reference = "[6]/[3]"
Call Report.Refresh()