컨트롤의 아랫쪽(bottom) 위치값을 반환하는 API이다.
| Parameters | Type | Description | 
|---|---|---|
| bFromParentBottom | BOOL | [옵션]부모의 하단을 기준으로 bottom값을 구할지 여부 (기본값: false) | 
| Type | Description | 
|---|---|
| short | 아랫쪽(bottom) 위치값 | 
* bFromParentBottom이 false일때 : 컨트롤 속성의 (y + height)값을 리턴한다. * bFromParentBottom이 true일때 : 자신의 부모 오브젝트로부터 하단으로 몇 pixel 떨어져있는지 값을 리턴한다.
function btn_getbottom_on mouseup()
{
	screen.alert(btnTest.getbottom());
}