테이블뷰 » Api

insertcolumn

Description

테이블뷰에 특정 위치에 열을 추가하는 API이다.

Parameters

Parameters Type Description
nColumn long Insert할 Column Index (Zero-Based)
nWidth long 열의 너비 (단위: 픽셀)
bFitSize BOOL [옵션] 테이블 뷰 크기 동기화 처리 여부(기본값: false)

Return Value

Type Description
BOOL 성공/실패 여부

Example

function btn_insertrow() { var bResult = tableview.insertcolumn(3, 100); if(bResult == false) { screen.alert("새로운 열를 삽입하는 도중 오류가 발생하였습니다."); } }

See Also

addcolumn

Viewer Ver.

9.1.1.1

Update Date

20190129