Method: RemoveAll for 3DCurves
- Updated2024-09-12
- 1 minute(s) read
DIAdem REPORT > Methods > Method: RemoveAll for 3DCurves
Method: RemoveAll for 3DCurves
Deletes all curves in a 3D axis system in DIAdem REPORT.
Object.RemoveAll()
Object | 3DCurves Object with this method |
The following example deletes all curves from each 3D axis system of the current worksheet:
VBScript | Python |
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