패널 » Api
getchildshapeinstancenext
Description
패널 안에 화면 디자인시 기준 도형의 다음으로 생성된 도형의 인스턴스를 가져오는 API이다.
Parameters
Parameters |
Type |
Description |
instBaseShape |
INSTANCE |
컨트롤의 Instance |
Return Value
Type |
Description |
INSTANCE |
해당 컨트롤의 instance 또는 null |
Example
function btn_on_mouseup()
{
var instShape;
instShape = pnl.getchildshapeinstancefirst();
while(instShape) {
factory.consoleprint(instShape.getname());
instShape = pnl.getchildshapeinstancenext(instShape);
}
}
See Also
getchildshapeinstancefirst
Viewer Ver.
9.1.1.1
Update Date
20210930