constructor(r?: number, c?: number, r2?: number, c2?: number): CellRange
CellRangeクラスの新しいインスタンスを初期化します。
The index of the first row in the range (defaults to -1).
The index of the first column in the range (defaults to -1).
The index of the last row in the range (defaults to r).
The index of the last column in the range (defaults to c).
combine(rng: CellRange): CellRange
この範囲と指定された別の範囲の和集合を表す新しいCellRangeを返します。
contains(r: any, c?: number): boolean
この範囲が別の範囲または特定のセルを含むかどうかをチェックします。
The CellRange or row index to find.
The column index (required if the r parameter is not a CellRange object).
containsColumn(c: number): boolean
この範囲が指定した列を含むかどうかを確認します。
The index of the column to find.
containsRow(r: number): boolean
この範囲が指定した行を含むかどうかを確認します。
The index of the row to find.
intersectsColumn(rng: CellRange): boolean
範囲が別の範囲内の列と交差するかどうかをチェックします。
intersectsRow(rng: CellRange): boolean
この範囲が別の範囲内の行と交差するかどうかをチェックします。
setRange(r?: number, c?: number, r2?: number, c2?: number): void
既存のCellRange を初期化します。
The index of the first row in the range (defaults to -1).
The index of the first column in the range (defaults to -1).
The index of the last row in the range (defaults to r).
The index of the last column in the range (defaults to c).
2つの行インデックスと2つの列インデックスによって定義されたセルの矩形グループを表します。