getFirstCol (method)

최 좌측 열이름을 확인합니다.
section을 통해 특정 영역의 최 좌측 열을 확인할 수도 있습니다.
해당 함수는 기본적으로 보여지는 열을 기준으로 확인합니다.
includeHideCol 또는 Cfg: GetColWithHide 를 설정하여 Visible 관계없이 가져옵니다.
우선 순위는 includeHideCol > GetColWithHide 임으로, GetColWithHidetrue로 설정 하여도 includeHideColfalse로 설정시에는 보여지는 열을 기준으로 동작하게 할 수 있습니다.

Syntax

string getFirstCol( section, includeHideCol );

Parameters

Name Type Required Description
section number 선택 틀고정 기준 영역 지정(0:좌측, 1:가운데, 2:우측)
includeHideCol boolean 선택 true 설정시 Col.Visible 관계없이 콜을 추출함

Return Value

string : 좌측에 위치한 열이름

Example

//최 좌측의 열이름을 확인한다.
var fcol = sheet.getFirstCol();

Read More

Since

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