Variable Text Box
variable_text_box
$value
_$(id)_control = grc_wxgui.text_box_control(
window=self.GetWin(),
callback=self.set_$(id),
#if $label.eval
label=$label,
#else
label='$id',
#end if
value=$id,
)
#set $grid_pos = $grid_pos.eval
#if not grid_pos
self.Add(_$(id)_control)
#else
self.GridAdd(_$(id)_control, $grid_pos[0], $grid_pos[1], $grid_pos[2], $grid_pos[3])
#end if
Label
label
string
Default Value
value
0
raw
Grid Position
grid_pos
grid_pos
This block creates a variable with a text box. \
Leave the label blank to use the variable id as the label.
Use the Grid Position (row, column, row span, column span) to position the graphical element in the window.