07-11-2011 12:36 PM
can someone please explain to me what enum and rings are? links will be helpful too thanks!
Solved! Go to Solution.
07-11-2011
01:35 PM
- last edited on
05-01-2025
03:22 PM
by
Content Cleaner
Read the LabVIEW Help. https://www.ni.com/docs/en-US/bundle/labview/page/front-panel-controls-and-indicators.html
Both provide a list of values, but enums are their own datatype whereas rings are integers. Enums are not usually used on the front panel of top-level user interface VIs since they don't look like "natural" dropdown controls. It's not unusual to find enums as front panel controls of subVIs especially if you want to provide a restricted set of values. Enums are self-documenting - if you connect an enum to a case structure then the case elements will have the same names as the enumerations.
07-11-2011 02:11 PM
thanks!!