Property: Name for Element <Data>
- Updated2024-09-12
- 1 minute(s) read
Internal Data > Properties > Property: Name for Element <Data>
Property: Name for Element <Data>
Specifies the name of an element in the script interface for internal data. The element might be a root type, a channel group type, or a channel type.
Object.Name
Object | Element <Data> Object with this property |
Object.Name | String with read and write access |
The following example displays the name of the first channel from the first channel group:
VBScript | Python |
Dim oMyElement Set oMyElement = Data.Root.ChannelGroups(1).Channels(1) Call MsgBoxDisp (oMyElement.Name)