SpreadJS製品ヘルプ
ワークシート要素
SpreadJS > 開発者の手引き > JavaScriptフレームワーク > Angular > ワークシート要素

次の表はgc-worksheet要素の一覧を示します

機能 Spread.Sheets API 備考
dataSource Worksheet.setDataSource(value) any  
name Worksheet.name(value) string  
frozenColumnCount Worksheet.frozenColumnCount(value) number  
frozenRowCount Worksheet.frozenRowCount(value) number  
frozenTrailingColumnCount Worksheet.frozenTrailingColumnCount(value) number  
frozenTrailingRowCount Worksheet.frozenTrailingRowCount(value) number  
allowCellOverflow Worksheet.options.allowCellOverflow = value boolean  
frozenlineColor Worksheet.options.frozenlineColor = value string  
sheetTabColor Worksheet.options.sheetTabColor = value string  
rowCount Worksheet.setRowCount(value) number  
colCount Worksheet.setColumnCount(value) number  
selectionPolicy Worksheet.selectionPolicy(value) GC.Spread.Sheets.SelectionPolicy  
selectionUnit Worksheet.selectionUnit(value) GC.Spread.Sheets.SelectionUnit  
zoom Worksheet.zoom(value) number  
currentTheme Worksheet.currentTheme(value) string  
clipBoardOptions Worksheet.options.clipBoardoptions(value) GC.Spread.Sheets.ClipboardPasteOptions  
rowHeaderVisible Worksheet.options.setRowHeaderVisible = value boolean  
columnHeaderVisible Worksheet.options.colHeaderVisible = value boolean  
rowHeaderAutoText Worksheet.options.rowHeaderAutoText = value GC.Spread.Sheets.HeaderAutoText  
columnHeaderAutoText Worksheet.options.colHeaderAutoText =value GC.Spread.Sheets.HeaderAutoText  
rowHeaderAutoTextIndex Worksheet.options.rowHeaderAutoTextIndex = value number  
columnHeaderAutoTextIndex Worksheet.options.colHeaderAutoTextIndex = value number  
isProtected Worksheet.options.isProtected = value boolean  
showRowOutline Worksheet.showRowOutline(value) boolean  
showColumnOutline Worksheet.showColumnOutline(value) boolean  
selectionBackColor Worksheet.options.selectionBackColor = value string  
selectionBorderColor Worksheet.options.selectionBorderColor = value string  
defaultStyle Worksheet.setDefaultStyle(value) GC.Spread.Sheets.Style  
rowOutlineInfo   any [ ] 行のアウトライン情報を含む配列。例:[{index: 1, count: 10}]
columnOutlineInfo   any [ ] 行のアウトライン情報を含む配列。例:[{index: 1, count: 10}]

次のサンプルはワークシート要素の使用例です:

JavaScript
コードのコピー
@Component({
      selector: 'my-app',
      template: `<gc-spread-sheets>
                      <gc-worksheet [name]="sheetName" [rowOutlineInfo]="rowOutlineInfo">
                      </gc-worksheet>
                 </gc-spread-sheets>`,
    })
    export class AppComponent {
      sheetName: "SheetName";
      rowOutlineInfo = {
          index: 1,
          count: 3
      }
    }

ワークシート要素は次の子要素を含みます:

子要素 Spread.Sheets API カウント
gc-column   any