TriggerAll

Typestatement
DictionaryLCB
LibraryLiveCode Builder
Syntax
trigger all [ in <mWidget> ]
Associationscom.livecode.widget
Summary

Causes all of a widget's property triggers to be fired.

Parameters
NameTypeDescription
mWidget

An expression that evaluates to a widget.

Example
handler TextChangedCallback()
        UpdateTextProperty()
        trigger all
end handler
private variable mSelf as Widget
handler TextChangedCallback()
	UpdateTextProperty()
	trigger all in mSelf
end handler
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.

Tagswidget