Foundation > Rogue Wave Script Programming > Handling Panel Events > The onShow Property
 
The onShow Property
IlvContainer has an onShow property to which you can pass a Rogue Wave Script function. The specified function is called when the container is displayed on the screen. For example:
function OnShow(theContainer)
{
writeln("Hi, " + theContainer.name + " is displayed.");
}
 
function OnLoad(theContainer)
{
theContainer.onShow = OnShow;
}
In this example, the OnShow function is used to handle the onShow event applied to theContainer.

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