Object: SpiderLine
- Updated2024-09-12
- 1 minute(s) read
(Collections | Spider) > SpiderCurves > SpiderCurve > Object: SpiderLine
Object: SpiderLine
The SpiderLine object provides a curve in the Line display mode in a spider axis system in DIAdem REPORT.
The following example creates a spider axis system in the display mode Linie:
| VBScript | Python |
Dim oMyAxisSystem, oMyPos, oMyCurve Call Report.NewLayout() Call Data.Root.Clear() Call DataFileLoad("Example.tdm","TDM","") Set oMyAxisSystem = Report.ActiveSheet.Objects.Add(eReportObjectSpider, "MySpiderAxisSystem") Set oMyPos = oMyAxisSystem.Position.ByCoordinate oMyPos.X1 = 20 oMyPos.X2 = 80 oMyPos.Y1 = 20 oMyPos.Y2 = 80 Set oMyCurve = oMyAxisSystem.CurvesSpider.Add(eSpiderShapeLine, "MySpiderCurve") oMyCurve.Shape.Channel.Reference = "[5]/[3]" Call Report.Refresh()