constructor(left: number, top: number, width: number, height: number): Rect
Rectクラスの新しいインスタンスを初期化します。
Left coordinate of the new Rect.
Top coordinate of the new Rect.
Width of the new Rect.
Height of the new Rect.
fromBoundingRect(rc: any): Rect
ClientRectまたはSVGRectオブジェクトからRecttを作成します。
Rectangle obtained by a call to the DOM's getBoundingClientRect or GetBoundingBox methods.
inflate(dx: number, dy: number): Rect
矩形を指定した量だけ拡大または縮小した結果の矩形を作成します。
The amount by which to expand or shrink the left and right sides of the rectangle.
The amount by which to expand or shrink the top and bottom sides of the rectangle.
左座標、上座標、幅、高さを持つ矩形を表すクラス。