OnVisibilityChanged

Typemessage
DictionaryLCB
LibraryLiveCode Builder
Syntax
OnVisibilityChanged <isVisible>
Associationscom.livecode.widget
Summary

Sent when the widget visibility changed.

Parameters
NameTypeDescription
isVisible

Whether the widget is now visible or not.

Example
private variable mAnimate as Boolean

public handler OnVisibilityChanged(in pVisible as Boolean)
	put pVisible into mAnimate
end handler
Description

Handle the OnVisibilityChanged message to execute code when the widget becomes visible or invisible.

Tagswidget