DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

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()
ObjectElementList <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:

VBScriptPython

 

Dim oMyChns
Set oMyChns = Data.GetChannels("T*")
' futher instructions
Call oMyChns.RemoveAll()
In This Section
Was this information helpful?