ChangeWidget — Changes widget contents
boolean
ChangeWidget
( | symbol widgetId , |
symbol property , | |
any
newValue
) ; |
widgetId
Can also be specified as `id( any widgetId )
property
newValue
Changes a property of a widget of the topmost dialog. id
specified the widget to change, property
specifies the property that should be changed, newvalue
gives the new value.
For example in order to change the label of an InputField with id `name to "anything", you write ChangeWidget( `id(`name), `Label, "anything" )
.