Property: Properties for Element <Data>
- Updated2024-09-12
- 1 minute(s) read
Internal Data > Properties > Property: Properties for Element <Data>
Property: Properties for Element <Data>
Contains the Properties collection that is associated with a ChannelGroup object in the script interface for internal data.
Set oProperties = Object.Properties
Object | Element <Data> Object with this property |
oProperties | Properties <Data> Returned object |
The following example displays the name and the value of the fifth property of the first channel of the active channel group:
VBScript | Python |
Dim oMyElement Set oMyElement = Data.Root.ActiveChannelGroup.Channels(1) Call MsgBoxDisp (oMyElement.Properties(5).Name & " " & oMyElement.Properties(5).Value)