There are two methods for doing this.
Method AA simple solution is to use a property node to retrieve the text property.
- Right click on your text ring or menu ring and select Create»Property Node.
- Locate the property node you just created on the block diagram. Right click on the property node and select Properties»Ring Text»Text. The output of the property node is now the text selected in the ring control.
Method BA second solution is useful when trying to limit the number of property nodes used. A property node can retrieve the Strings[] property. Then use the index array function to find the particular string the user selected. For more information on the performance of property nodes please see the Related Links section.
- Right click on your text ring or menu ring and select Create»Property Node.
- Locate the property node you just created on the block diagram. Right click on the property node and select Properties»Strings[].
- Place the index array function (located on the Array palette) on your block diagram.
- Wire the output of the text ring or menu ring to the Index input of the index array.
- Wire the output of the property node to the Array input of the index array.
- The output of the index array is now the string the user selected in the text ring or menu ring.