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

左座標、上座標、幅、高さを持つ矩形を表すクラス。

コンストラクタ

プロパティ

メソッド

コンストラクタ

constructor

constructor(left: number, top: number, width: number, height: number): Rect

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

パラメーター
戻り値
Rect

プロパティ

bottom

このRectの下座標を取得します。

number

height

このRectの高さを取得または設定します。

number

left

このRect の左座標を取得または設定します。

number

top

このRect の上座標を取得または設定します。

number

width

このRectの幅を取得または設定します。

number

メソッド

clone

clone(): Rect

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

戻り値
Rect

contains

contains(pt: any): boolean

この矩形が指定したポイントまたは矩形を含むかどうかを調べます。

パラメーター
戻り値
boolean

equals

equals(rc: Rect): boolean

Rect の座標とサイズがこのRectと同じ場合は、trueを返します。

パラメーター
戻り値
boolean

Static fromBoundingRect

fromBoundingRect(rc: any): Rect

ClientRectまたはSVGRectオブジェクトからRecttを作成します。

パラメーター
  • rc: any

    Rectangle obtained by a call to the DOM's getBoundingClientRect or GetBoundingBox methods.

戻り値
Rect

inflate

inflate(dx: number, dy: number): Rect

矩形を指定した量だけ拡大または縮小した結果の矩形を作成します。

パラメーター
  • dx: number

    The amount by which to expand or shrink the left and right sides of the rectangle.

  • dy: number

    The amount by which to expand or shrink the top and bottom sides of the rectangle.

戻り値
Rect

Static intersection

intersection(rc1: Rect, rc2: Rect): Rect

2つの四角形の共通部分を表す四角形を取得します。

パラメーター
  • rc1: Rect

    First rectangle.

  • rc2: Rect

    Second rectangle.

戻り値
Rect

Static union

union(rc1: Rect, rc2: Rect): Rect

2つの矩形の和集合を表す矩形を取得します。

パラメーター
  • rc1: Rect

    First rectangle.

  • rc2: Rect

    Second rectangle.

戻り値
Rect