멀티라인그리드 » Api

getitemhorzalign

Description

멀티라인 그리드의 아이템 수평 정렬 값을 가져오는 API이다.

Parameters

Parameters Type Description
nRow long 로우 인덱스
nSubRow short 서브 로우 인덱스
nCol short 컬럼 인덱스

Return Value

Type Description
short 수평 정렬값

Example

function btn_on_mouseup() { var nhorz = mgrd.getitemhorzalign(0,1,0); var strhorz = ""; if(nhorz == 0){ strhorz = "left"; } else if(nhorz == 1){ strhorz = "right"; } else if(nhorz == 2){ strhorz = "center"; } screen.alert("멀티라인그리드의 0,1,0의 좌우 정렬 값은 : " + strhorz); }

See Also

setitemhorzalign

Viewer Ver.

9.1.1.1

Update Date

20091210