DIAdem Help

Method: RemoveAll for 3DCurves

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

Method: RemoveAll for 3DCurves

Deletes all curves in a 3D axis system in DIAdem REPORT.

Object.RemoveAll()
Object3DCurves
Object with this method

The following example deletes all curves from each 3D axis system of the current worksheet:

VBScriptPython

 

Dim oMyReportObj, oMyReportObjects 
Set oMyReportObjects = Report.ActiveSheet.Objects
For Each oMyReportObj in oMyReportObjects
  If oMyReportObj.ObjectType = eReportObject3DAxisSystem Then
    Call oMyReportObj.Curves3D.RemoveAll()
  End If
Next

Log in to get a better experience