CssRect class
A class for representing CSS dimensions.
In contrast to the more general purpose Rectangle class, this class's values are mutable, so one can change the height of an element programmatically.
Important note: use of these methods will perform CSS calculations that can trigger a browser reflow. Therefore, use of these properties during an animation frame is discouraged. See also: Browser Reflow
Constructors
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, override
- The hash code for this object. [...]
- height ↔ num read / write, override-getter
- The height of this 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 / write, override-getter
- The width of this rectangle. [...]
Methods
- boundingBox(
Rectangle< num> other) → Rectangle<num> - Returns a new rectangle which completely contains
this
andother
. - containsPoint(
Point< num> another) → bool - Tests whether
another
is inside or along the edges ofthis
. - containsRectangle(
Rectangle< num> another) → bool - Tests whether
this
entirely containsanother
. - intersection(
Rectangle< num> other) → Rectangle<num> ? - Computes the intersection of
this
andother
. [...] - intersects(
Rectangle< num> other) → bool - Returns true if
this
intersectsother
. - noSuchMethod(
Invocation invocation) → dynamic inherited - Invoked when a non-existent method or property is accessed. [...]
- toString(
) → String override - A string representation of this object. [...]
Operators
- operator ==(
Object other) → bool override - The equality operator. [...]
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-html/CssRect-class.html