패널안에 화면 디자인시 맨 처음 생성된 도형의 인스턴스를 가져오는 API이다.
Type | Description |
---|---|
INSTANCE | 해당 컨트롤의 instance 또는 null |
function btn_on_mouseup()
{
var instShape;
instShape = pnl.getchildshapeinstancefirst();
while(instShape) {
factory.consoleprint(instShape.getname());
instShape = pnl.getchildshapeinstancenext(instShape);
}
}