그리드 » Api

getitemmaxvalue

Description

그리드 특정 아이템의 max_value 속성값 반환하는 API이다.

Parameters

Parameters Type Description
nRow long 로우 인덱스
nColumn short 컬럼 인덱스

Return Value

Type Description
long max_value 속성값

Remark

아이템별 max_value 미지정시 컬럼의 max_value가 리턴된다.

Example

function btn_on_mouseup() { var ret, max_value; max_value = grd.getitemmaxvalue(0, 0); factory.consoleprint("getitemmaxvalue return " + max_value); if (max_value > 10) { ret = grd.setitemmaxvalue(0, 0, 10); factory.consoleprint("setitemmaxvalue return = " + ret); } }

See Also

setitemmaxvalue

Viewer Ver.

24.1.30.1

Update Date

20240130