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

FlexGrid のセル結合動作を定義します。

グリッドのデフォルトの結合動作を実装するために、このクラスのインスタンスが 自動的に作成され、グリッドのmergeManager プロパティに割り当てられます。

デフォルトの結合動作をカスタマイズする場合は、MergeManager から派生する クラスを作成し、getMergedRange メソッドをオーバーライドします。

コンストラクタ

メソッド

コンストラクタ

constructor

constructor(grid?: FlexGrid): MergeManager

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

パラメーター
戻り値
MergeManager

メソッド

getMergedRange

getMergedRange(p: GridPanel, r: number, c: number, clip?: boolean): CellRange

GridPanel 内のセルの結合範囲を指定するCellRange を取得します。

パラメーター
  • p: GridPanel

    The GridPanel that contains the range.

  • r: number

    The index of the row that contains the cell.

  • c: number

    The index of the column that contains the cell.

  • clip: boolean Optional

    Whether to clip the merged range to the grid's current view range.

戻り値
CellRange