Property: OperationalFlags for ComplexChannel <Data>
- Updated2024-09-12
- 1 minute(s) read
Internal Data > Properties > Property: OperationalFlags for ComplexChannel <Data>
Property: OperationalFlags for ComplexChannel <Data>
Specifies whether or not DIAdem assigns a flag to a complex channel value in the script interface for internal data.
Object.OperationalFlags(Index)
Object | ComplexChannel <Data> Object with this property |
Index | LongInteger Specifies the channel value to which DIAdem assigns the flag. |
Object.OperationalFlags | Boolean with read and write access |
![]() | Note To delete all flags of all the channels, use the ChnFlagDelAll command. To delete the flags of one channel, use the ChnFlagDel command. To delete or to set several flags in one channel, use the ChnFlagSet command. |
The following example assigns a flag to the first value of the first channel in the default channel group:
VBScript | Python |
Dim oMyDataChannel Set oMyDataChannel = Data.Root.ActiveChannelGroup.Channels(1) oMyDataChannel.OperationalFlags(1) = True