f.SheetControl().syncSector()

f.SheetControl(fid, sector).syncSector(sector)

개요

syncSector()를 통해 시트 컨트롤에 타겟 섹터 또는 섹터들의 현재 값을 동기화 합니다.

파라미터

파라미터명
필수여부
타입
제약사항
설명

sectors

Yes

Sector | Array<Sector>

동기화 할 섹터 또는 섹터 배열

예시

// 단일섹터 동기화
f.SheetControl('f_10476').syncSector(_c.sheetCategory.activeSector)
f.SheetControl('f_10476', _c.testCategory.activeSector).syncSector(_c.sheetCategory.activeSector)

// 멀티 섹터 동기화
f.SheetControl('f_10476').syncSector(_c.sheetCategory)
f.SheetControl('f_10476', _c.testCategory.activeSector).syncSector(_c.sheetCategory)

Last updated

Was this helpful?