Sys.Application.removeComponent 메서드
업데이트: 2007년 11월
응용 프로그램에서 개체를 제거하고, 해당 개체가 삭제 가능한 개체로 등록된 경우 개체를 삭제합니다. 이 멤버는 정적 멤버이며 클래스의 인스턴스를 만들지 않고 호출할 수 있습니다.
Sys.Application.removeComponent(component);
인수
- component
제거할 구성 요소입니다.
예제
다음 예제에서는 업무 마감 시간과 같이 지정된 시점에 응용 프로그램에서 중요한 데이터 구성 요소를 제거하는 한 쌍의 함수를 보여 줍니다.
function tick() {
var d = new Date();
while($get('DataBox')) {
window.setInterval(checkTime(d), 100);
}
}
function checkTime(d) {
if (!(8 < d.getHours() < 17)) {
Sys.Application.removeComponent(DataBox);
}
}