PARAM_TEXT_EDIT_BOX
This widget lets the user enter text in a box to modify the value of a parameter.
Attributes brief detailed show all inherited
Examples
This widget has the same attributes as the TEXT_EDIT_BOX, except that it uses 'param_id' instead of 'string_id' to define the parameter it is linked to.
- <!-- create a param -->
- <PARAM id="A" min="-2000" max="2000" default="0" unit="dB" />
- <!-- edit value of a param -->
- <WIDGET background_color="#FBB469" v_margin="10" h_margin="10">
- <PARAM_TEXT_EDIT_BOX param_id="A" content="{value} {unit}" width="150" font_size="16" background_color="#FFDD55" show_edges="false" value_format="0.0" />
- </WIDGET>
- <!-- display value -->
- <CELL v_margin="10">
- <PARAM_TEXT param_id="A" content="result: {value}" />
- </CELL>

You can also take a look at LM TextWIdget for more customization options.
Comments
Please, authorize to view and post comments.