DIAdem Help

Method: Remove for SynchronizationGroups

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

Method: Remove for SynchronizationGroups

Deletes a synchronization group from the list of synchronization groups in DIAdem REPORT.

Object.Remove(IDOrIndex)
ObjectSynchronizationGroups
Object with this method
IDOrIndexVariant
Specifies the name or index of the synchronization group.

The following example checks whether the synchronization group "XAxis Group1” for x-axes exists and then deletes the synchronization group:

VBScriptPython

 

Dim oMyXSync
Set oMyXSync = Report.Settings.Synchronization.AxisSystem2D.XAxis
If oMyXSync.Exists("XAxis Group1") Then
  Call oMyXSync.Remove("XAxis Group1")
End If