Property: OperationalFlags for ImplicitChannel <Data>
- Updated2024-09-12
- 1 minute(s) read
Internal Data > Properties > Property: OperationalFlags for ImplicitChannel <Data>
Property: OperationalFlags for ImplicitChannel <Data>
Specifies whether DIAdem assigns a flag to the value of an implicit channel in the script interface for internal data.
Object.OperationalFlags(Index)
Object | ImplicitChannel <Data> Object with this property |
Index | LongInteger Specifies the channel value, which DIAdem assigns to the flag. |
Object.OperationalFlags | Boolean with read and write access |
The following example assigns a flag to the first value of the first channel in the default group:
VBScript | Python |
Dim oMyImplChn Set oMyImplChn = Data.Root.ActiveChannelGroup.Channels(1) oMyImplChn.OperationalFlags(1) = True