FormulaRow
(합계행)의 위치(하단(기본값), 상단)를 변경할 수 있습니다.
void setFormulaRowPosition( pos, norender );
Name | Type | Required | Description |
---|---|---|---|
pos | number |
필수 | 0 : 상단으로 이동 1 : 하단으로 이동 (default:1 ) |
norender | boolean |
선택 | 화면에 반영 하지 않는 옵션 (default:0(false) ) |
boolean : 설정 완료 여부
//합계행을 상단으로 이동
sheet.setFormulaRowPosition( 0 );
//합계행을 하단으로 이동
sheet.setFormulaRowPosition({pos:1});
product | version | desc |
---|---|---|
core | 8.0.0.0 | 기능 추가 |