dart:html
DomRectReadOnly class
- Implemented types
-
- Annotations
-
- @Native("DOMRectReadOnly")
Constructors
- DomRectReadOnly([num? x, num? y, num? width, num? height])
factory
Properties
- bottom → num
read-only
- The y-coordinate of the bottom edge.
- bottomLeft → Point<num>
read-only
- bottomRight → Point<num>
read-only
- hashCode → int
read-only
- The hash code for this object.
- height → num
read-only, override
- The height of the rectangle.
- left → num
read-only, override
- The x-coordinate of the left edge.
- right → num
read-only
- The x-coordinate of the right edge.
- runtimeType → Type
read-only, inherited
- A representation of the runtime type of the object.
- top → num
read-only, override
- The y-coordinate of the top edge.
- topLeft → Point<num>
read-only
- topRight → Point<num>
read-only
- width → num
read-only, override
- The width of the rectangle.
- x → num?
read-only
- y → num?
read-only
Methods
- boundingBox(Rectangle<num> other) → Rectangle<num>
- Returns a new rectangle which completely contains
this and other. - containsPoint(Point<num> another) → bool
- Tests whether
another is inside or along the edges of this. - containsRectangle(Rectangle<num> another) → bool
- Tests whether
this entirely contains another. - intersection(Rectangle<num> other) → Rectangle<num>?
- Computes the intersection of
this and other. - intersects(Rectangle<num> other) → bool
- Returns true if
this intersects other. - noSuchMethod(Invocation invocation) → dynamic
inherited
- Invoked when a non-existent method or property is accessed.
- toString() → String
- A string representation of this object.
Operators
- operator ==(Object other) → bool
- The equality operator.
Static Methods
- fromRect([Map? other]) → DomRectReadOnly