getNextCol (method)

지정한 컬럼의 다음 컬럼명을 리턴합니다.
해당 함수는 기본적으로 보여지는 열을 기준으로 확인합니다.
includeHideCol 또는 Cfg: GetColWithHide 를 설정하여 Visible 관계없이 가져옵니다.
우선 순위는 includeHideCol > GetColWithHide 임으로, GetColWithHidetrue로 설정 하여도 includeHideColfalse로 설정시에는 보여지는 열을 기준으로 동작하게 할 수 있습니다.

Syntax

string getNextCol( col, includeHideCol );

Parameters

Name Type Required Description
col string 필수 열이름
includeHideCol boolean 선택 true 설정시 Col.Visible 관계없이 콜을 추출함

Return Value

string : 열 이름

Example

//다음 컬럼명을 리턴합니다.
var fcol = sheet.getNextCol(sheet.getFocusedCol());

Read More

Since

product version desc
core 8.0.0.7 기능 추가
core 8.0.0.11 includeHideCol 인자 추가