![]() | DIAdem 2012 Help |
![]() | DIAdem 2014 Help |
![]() | DIAdem 2015 Help |
![]() | DIAdem 2017 Help |
![]() | DIAdem 2018 Help |
![]() | DIAdem 2019 Help |
Specifies the position of a spider axis system in DIAdem REPORT.
Set oObjectPosition = Object.Position
Object | Spider Object with this property |
oObjectPosition | ObjectPosition Returned object |
The following example generates a spider axis system with a Line type curve:
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()
Helpful
Not Helpful