Method: Remove for SynchronizationGroups
- Updated2024-09-12
- 1 minute(s) read
DIAdem REPORT > Methods > Method: Remove for SynchronizationGroups
Method: Remove for SynchronizationGroups
Deletes a synchronization group from the list of synchronization groups in DIAdem REPORT.
Object.Remove(IDOrIndex)
| Object | SynchronizationGroups Object with this method |
| IDOrIndex | Variant 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:
| VBScript | Python |
Dim oMyXSync Set oMyXSync = Report.Settings.Synchronization.AxisSystem2D.XAxis If oMyXSync.Exists("XAxis Group1") Then Call oMyXSync.Remove("XAxis Group1") End If