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

2つの行インデックスと2つの列インデックスによって定義されたセルの矩形グループを表します。

コンストラクタ

プロパティ

メソッド

コンストラクタ

constructor

constructor(r?: number, c?: number, r2?: number, c2?: number): CellRange

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

パラメーター
戻り値
CellRange

プロパティ

bottomRow

この範囲の一番下の行のインデックスを取得します。

number

col

この範囲内の最初の列のインデックスを取得または設定します。

number

col2

この範囲内の2番目の列のインデックスを取得または設定します。

number

columnSpan

この範囲の列数を取得します。

number

isSingleCell

この範囲が単一のセルに対応するかどうかを確認します。

boolean

isValid

この範囲に含まれている行インデックスと列インデックスが有効かどうか(行および列の値がゼロ以上かどうか)をチェックします。

boolean

leftCol

この範囲の一番左の列のインデックスを取得します。

number

rightCol

この範囲の一番右の列のインデックスを取得します。

number

row

この範囲内の最初の行のインデックスを取得または設定します。

number

row2

この範囲内の2番目の行のインデックスを取得または設定します。

number

rowSpan

この範囲の行数を取得します。

number

topRow

この範囲の一番上の行のインデックスを取得します。

number

メソッド

clone

clone(): CellRange

この範囲のコピーを作成します。

戻り値
CellRange

combine

combine(rng: CellRange): CellRange

この範囲と指定された別の範囲の和集合を表す新しいCellRangeを返します。

パラメーター
戻り値
CellRange

contains

contains(r: any, c?: number): boolean

この範囲が別の範囲または特定のセルを含むかどうかをチェックします。

パラメーター
  • r: any

    The CellRange or row index to find.

  • c: number Optional

    The column index (required if the r parameter is not a CellRange object).

戻り値
boolean

containsColumn

containsColumn(c: number): boolean

この範囲が指定した列を含むかどうかを確認します。

パラメーター
  • c: number

    The index of the column to find.

戻り値
boolean

containsRow

containsRow(r: number): boolean

この範囲が指定した行を含むかどうかを確認します。

パラメーター
  • r: number

    The index of the row to find.

戻り値
boolean

copy

copy(rng: CellRange): void

既存のセル範囲をこのセル範囲にコピーします。

パラメーター
戻り値
void

equals

equals(rng: CellRange): boolean

この範囲が別の範囲と等しいかどうかを確認します。

パラメーター
戻り値
boolean

getRenderSize

getRenderSize(p: GridPanel): Size

この範囲のレンダリングサイズを取得します。

パラメーター
戻り値
Size

intersects

intersects(rng: CellRange): boolean

この範囲が別の範囲と交差するかどうかを確認します。

パラメーター
戻り値
boolean

intersectsColumn

intersectsColumn(rng: CellRange): boolean

範囲が別の範囲内の列と交差するかどうかをチェックします。

パラメーター
戻り値
boolean

intersectsRow

intersectsRow(rng: CellRange): boolean

この範囲が別の範囲内の行と交差するかどうかをチェックします。

パラメーター
戻り値
boolean

setRange

setRange(r?: number, c?: number, r2?: number, c2?: number): void

既存のCellRange を初期化します。

パラメーター
  • r: number Optional

    The index of the first row in the range (defaults to -1).

  • c: number Optional

    The index of the first column in the range (defaults to -1).

  • r2: number Optional

    The index of the last row in the range (defaults to r).

  • c2: number Optional

    The index of the last column in the range (defaults to c).

戻り値
void

toString

toString(): string

このCellRangeを表す文字列を返します。

戻り値
string