DIAdem Help

Object: PolarCurve

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

Object: PolarCurve

The PolarCurve object provides a polar axis system curve in DIAdem REPORT.

The following example displays the types and the names of all curves from all polar axis systems:

VBScriptPython

 

Dim oMyReportObj, oMyReportObjects, oMySubObjects, oMySubObj, sOutput
sOutput = ""
Set oMyReportObjects = Report.ActiveSheet.Objects
For Each oMyReportObj in oMyReportObjects
  If oMyReportObj.ObjectType = eReportObjectPolarSystem Then
    Set oMySubObjects = oMyReportObj.CurvesPolar
    For Each oMySubObj in oMySubObjects
      sOutput = sOutput & "Curve shape: " & oMySubObj.ShapeType & vbTab & _
                "Curve name: " & oMySubObj.Name & vbCrLf
    Next
  End If
Next
Call MsgBoxDisp(sOutput)

Methods

IsExpanded