Foundation > Rogue Wave Script Programming > Handling Panel Events > The onHide Property
 
The onHide Property
The onHide property is similar to the onShow property except that the specified function is called when the container is hidden. For example:
function WhenPanelHides(theContainer)
{
writeln("Hi, I am " + theContainer.name + ", see you later.");
}
 
function OnLoad(theContainer)
{
theContainer.onHide = WhenPanelHides;
}

Version 5.8
Copyright © 2014, Rogue Wave Software, Inc. All Rights Reserved.