ASP.NET MVC コントロールヘルプ
Table クラス
ファイル
wijmo.grid.sheet.js
モジュール
wijmo.grid.sheet

FlexSheetコントロール内のシートを表します。

コンストラクタ

プロパティ

メソッド

コンストラクタ

constructor

constructor(name: string, range: CellRange, style?: TableStyle, columns?: TableColumn[], options?: ITableOptions): Table

Tableクラスの新しいインスタンスを初期化します。

パラメーター
戻り値
Table

プロパティ

alterFirstColumn

最初のテーブルの列にスタイルを適用するかどうかを判定する値を取得または設定します。

boolean

alterLastColumn

最後のテーブルの列にスタイルを適用するかどうかを判定する値を取得または設定します。

boolean

name

テーブル名を取得または設定します。

テーブル名は、プログラムによってテーブルを参照するために使用されます。

string

sheet

このテーブルが属するSheetを取得します。

Sheet

showBandedColumns

縞模様 (列)の書式設定が適用されるかどうかを示します。

boolean

showBandedRows

縞模様(行)の書式設定が適用されるかどうかを判定する値を取得または設定します。

boolean

showHeaderRow

テーブルに見出し行を含めるかどうかを示します。

boolean

showTotalRow

テーブルに集計行を含めるかどうかを示します。

boolean

style

このテーブルに関連付けられたTableStyle を取得または設定します。

TableStyle

メソッド

deleteRows

deleteRows(index: number, count?: number, shift?: boolean): void

テーブルの行を削除します。

パラメーター
  • index: number

    The starting index of the deleting rows in Table.

  • count: number Optional

    The numbers of rows to delete. If not specified then one row will be deleted.

  • shift: boolean Optional

    Indicates whether cells beneath the table should be shifted or not. If not specified cells beneath will be shifted.

戻り値
void

getColumns

getColumns(): TableColumn[]

テーブルの列を取得します。

戻り値
TableColumn[]

getRange

getRange(section?: TableSection, column?: any): CellRange

テーブルが占める関連シートの特定のセクションと列の範囲を取得します。

パラメーター
  • section: TableSection Optional

    The section of Table. If the section is omitted. It will get the range of entire table.

  • column: any Optional

    The column of Table. The column could be TableColumn instance, column name or column index. If the column is omitted. It will get the range for all columns in the table. If the section is null, the reference of the specific column includes the header row and the totals row if they are visible.

戻り値
CellRange

insertRows

insertRows(index: number, count?: number, shift?: boolean): boolean

テーブルに行を挿入します。

パラメーター
  • index: number

    The position where new rows should be added in table.

  • count: number Optional

    The numbers of rows to add. If not specified then one row will be added.

  • shift: boolean Optional

    Indicates whether cells beneath the table should be shifted or not. If not specified cells beneath will be shifted.

戻り値
boolean