Property: UnitSymbol for Channel <Data>
- Updated2024-09-12
- 1 minute(s) read
Internal Data > Properties > Property: UnitSymbol for Channel <Data>
Property: UnitSymbol for Channel <Data>
Specifies the unit symbol of a channel. The value of the UnitSymbol property for Channel corresponds to the value of Object.Properties("unit_string").value.
Object.UnitSymbol
Object | Channel <Data> Object with this property |
Object.UnitSymbol | String with read and write access |
The following example displays the unit symbol of the first channel in the default group:
VBScript | Python |
Dim oMyChannel Set oMyChannel = Data.Root.ActiveChannelGroup.Channels(1) Call MsgBoxDisp(oMyChannel.UnitSymbol) ' equivalent to oMyChannel.Properties("unit_string").Value