Property: Count for ElementList <Data>
- Updated2024-09-12
- 1 minute(s) read
Internal Data > Properties > 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
Object | ElementList <Data> Object with this property |
Object.Count | LongInteger 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:
VBScript | Python |
Dim oMyChns Set oMyChns = Data.GetChannels("T*") Call MsgBoxDisp(oMyChns.Count)