y property

num y

Gets or sets the y value of the Spot, a fractional value between zero and one.

The Spot(0,1) of a rectangle is at the bottom-left corner. This value is commonly available as Spot.BottomLeft. The Spot(1,0.5) would be at the middle of the right side. That value is commonly available as Spot.MiddleRight.

Implementation

_i2.num get y => _i4.getProperty(
      this,
      'y',
    );
void y=(num value)

Implementation

set y(_i2.num value) {
  _i4.setProperty(
    this,
    'y',
    value,
  );
}