# 워크시트 설정 가져오기

## Content

이 표는 SpreadJS가 Excel 형식 파일에서 데이터를 가져올 때 시트 설정이 어떻게 처리되는지를 설명합니다. 이 설정들은 별도 언급이 없으면 모두 GC.Spread.Sheets.Worksheet 클래스의 멤버입니다.

| **Excel 설정** | **SpreadJS 설정** | **참고** |
| -------- | ----------- | --- |
| 워크시트 이름 | SpreadJS Spread.name | SpreadJS가 Excel에서 이 설정을 가져옵니다. |
| 기본 너비 | Sheet.defaults.colWidth | SpreadJS가 Excel에서 이 설정을 가져옵니다. |
| 고정 창(Freeze panes) | Sheet.<strong>frozenRowCount</strong> 또는 Sheet.<strong>frozenColumnCount</strong> | SpreadJS가 Excel에서 이 설정을 가져옵니다. |
| 데이터 |  | SpreadJS가 Excel에서 데이터를 불러옵니다. |
| 스파크라인 | Sheet.[setSparkline](/spreadjs/api/v19/classes/GC.Spread.Sheets.Worksheet#setsparkline) | SpreadJS가 Excel에서 이 설정을 가져옵니다. |
| 병합 범위(Spans) | Sheet.[addSpan](/spreadjs/api/v19/classes/GC.Spread.Sheets.Worksheet#addSpan) | SpreadJS가 Excel에서 모든 병합 정보를 불러옵니다. |
| 활성 셀 | Sheet.[setActiveCell](/spreadjs/api/v19/classes/GC.Spread.Sheets.Worksheet#setActiveCell) | SpreadJS가 Excel에서 가져올 때 활성 셀을 설정합니다. |
| 선택 영역 | Sheet.[setSelection](/spreadjs/api/v19/classes/GC.Spread.Sheets.Worksheet#setSelection) | SpreadJS가 Excel에서 가져올 때 선택 영역을 설정합니다. |
| 그리드선(GridLine) | Sheet.<strong>options.gridline</strong> | SpreadJS가 Excel에서 이 설정을 가져옵니다. |
| 줌(확대/축소) | Sheet.[zoom](/spreadjs/api/v19/classes/GC.Spread.Sheets.Worksheet#zoom) | SpreadJS가 Excel에서 가져올 때 줌 배율을 유지합니다. |
| 테마 | Sheet.[currentTheme](/spreadjs/api/v19/classes/GC.Spread.Sheets.Worksheet#currentTheme) | SpreadJS가 Excel에서 이 설정을 가져옵니다. |
| 조건부 서식 | Sheet.[ConditionalFormats](/spreadjs/api/v19/classes/GC.Spread.Sheets.Worksheet#ConditionalFormats) | SpreadJS가 Excel에서 모든 조건부 서식을 불러옵니다. |
| 시트 탭 색상 | Sheet.<strong>options.sheetTabColor</strong> | SpreadJS가 Excel에서 이 설정을 가져옵니다. |
| 시트 보호 | Sheet.<strong>options.isProtected</strong> | SpreadJS가 Excel에서 이 설정을 가져옵니다. |
| 표(Tables) | Sheet.tables.[add](/spreadjs/api/v19/classes/GC.Spread.Sheets.Tables.TableManager#add) | SpreadJS가 Excel에서 모든 표를 불러옵니다. |
| 그룹 범위 | Sheet.rowOutlines 또는 Sheet.columnOutlines | SpreadJS가 Excel에서 모든 그룹 정보를 불러옵니다. |
| 셀 오버플로우 | Sheet.<strong>options.allowCellOverflow</strong> | SpreadJS는 allowCellOverflow를 true로 설정합니다(Excel에서는 셀이 항상 넘어갈 수 있음). |
| 필터 | Sheet.[rowFilter](/spreadjs/api/v19/classes/GC.Spread.Sheets.Worksheet#rowFilter) | SpreadJS가 Excel에서 모든 필터 정보를 불러옵니다. |
| 시트 사용자 정의 이름 | Sheet.[addCustomName](/spreadjs/api/v19/classes/GC.Spread.Sheets.Worksheet#addCustomName) | SpreadJS가 Excel에서 모든 사용자 정의 이름을 불러옵니다. |
| 시트 행 또는 열 헤더 | Sheet.<strong>options.rowHeaderVisible</strong> 또는 Sheet.<strong>options.colHeaderVisible</strong> | SpreadJS가 Excel에서 이 설정을 가져옵니다. |
| 0을 빈칸으로 표시 | Sheet.options.showZeros | SpreadJS가 Excel에서 이 설정을 가져옵니다. |
