TriggerAll
Type
statement
Summary
Causes all of a widget's property triggers to be fired.
Syntax
trigger all [ in <mWidget> ]
Description
Use trigger all to cause all triggers for all a widget's properties to be fired, for example when user action causes a native widget's properties to change, to signal the property change to the IDE.
Parameters
Name | Type | Description |
---|---|---|
mWidget | An expression that evaluates to a widget. |
Examples
handler TextChangedCallback()
UpdateTextProperty()
trigger all
end handler
private variable mSelf as Widget
handler TextChangedCallback()
UpdateTextProperty()
trigger all in mSelf
end handler