Name

ChangeWidget — Changes widget contents

Synopsis

boolean ChangeWidget ( symbol widgetId ,
  symbol property ,
  any newValue );
 

Parameters

symbol widgetId

Can also be specified as `id( any widgetId )

symbol property

any newValue

Return

boolean

Returns true on success.

Description

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" ).