This means that this tunnel does not have a wired input in all possible event cases. output tunnels can have 3 different states:
solid colored: all event cases have data wired to them.
white: Some event cases have missing inputs to this tunnel, resulting in a broken VI.
Shaded: Same as white, but the tunnel is set to "Use default if unwired". The VI is not broken.
Case structure tunnels have the same functionality.
The default behavior for case structures is "Don't use default if unwired", while the default for event strucures is "use default if unwired". You can always manually change the behavior by right-clicking on the tunnel.
Whenever an unwired event happens, the tunnel gets the default value for this data type (e.g. numeric=0, array=e
mpty array, boolean=false, etc.)
A typical use is e.g. the event to stop the VI, here a "true" must leave the event struture and connect to the loop condition set to "stop if true". Since all other events should keep the VI running, you can leave them unwired and they will automatically generate a "false" output. Saves a lot of work.
😉