exportSheet (method)

달력의 모든 event 정보들을 스프레드 시트 파일(.xls, .xlsx)로 저장합니다.
"exportExcel()"과의 차이점은 eventSource를 시트별로 구분되어 저장할지 여부를 선택할 수 있습니다.

Syntax

void exportSheet( fileName, splitEventSource);

Parameters

Name Type Required Description
fileName string 선택 스프레드 시트 파일(.xls, .xlsx) 이름 설정
(default : "ibcalendar.json")
splitEventSource boolean 선택 event 정보들을 eventSource 별 sheet로 구분되어 저장할지 여부
(default : true)

Return Value

none

Example

IBCalendar.get("calendar1").exportSheet();
IBCalendar.get("calendar1").exportSheet("ibcalendar.xls");
IBCalendar.get("calendar1").exportSheet("ibcalendar.xlsx");

Since

product version desc
core 1.5.0.0 기능 추가