onClose プロパティー
onClose プロパティーは、コンテナーが閉じられているときに指定した関数が呼び出されることを除いては、onShow プロパティーと類似しています。例:
function OnClose(theContainer)
{
writeln("Hi, " + theContainer.name + " has terrible news ...");
}
function OnLoad(theContainer)
{
theContainer.onClose = OnClose;
}
Version 6.0
Copyright © 2015, Rogue Wave Software, Inc. All Rights Reserved.