DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Property: Count for ElementList <Data>

Property: Count for ElementList <Data>

Returns the number of elements of a ElementList collection, in the script interface for internal data.

Object.Count
ObjectElementList <Data>
Object with this property
Object.CountLongInteger with read access
Returns the number of elements.

The following example searches for all channels that start with the letter T and displays the number of channels it finds:

VBScriptPython

 

Dim oMyChns
Set oMyChns = Data.GetChannels("T*")
Call MsgBoxDisp(oMyChns.Count)
In This Section
Was this information helpful?