Method: RemoveAll for ElementList <Data>
- Updated2024-09-12
- 1 minute(s) read
Internal Data > Methods > Method: RemoveAll for ElementList <Data>
Method: RemoveAll for ElementList <Data>
Deletes all elements from the ElementList collection in the script interface for internal data. This method is not available if the ElementList collection is read-only.
Object.RemoveAll()
Object | ElementList <Data> Object with this method |
The following example searches for all channels that start with the letter T and adds them to the ElementList collection. Then, the example deletes all channels from the collection:
VBScript | Python |
Dim oMyChns Set oMyChns = Data.GetChannels("T*") ' futher instructions
Call oMyChns.RemoveAll()