Property: IsReadOnly for Channel <Data>
- Updated2024-09-12
- 1 minute(s) read
Internal Data > Properties > Property: IsReadOnly for Channel <Data>
Property: IsReadOnly for Channel <Data>
Specifies whether a channel is read-only.
Object.IsReadOnly
Object | Channel <Data> Object with this property |
Object.IsReadOnly | Boolean value with read access |
The following example displays whether the first channel of the default group is read-only:
VBScript | Python |
Dim oMyChannel Set oMyChannel = Data.Root.ActiveChannelGroup.Channels(1) Call MsgBoxDisp(oMyChannel.IsReadOnly)