startY property

num get startY

Gets or sets the starting Y coordinate of the Geometry if it is of type Geometry.Line|Line, Geometry.Rectangle|Rectangle, or Geometry.Ellipse|Ellipse. The initial value is zero.

Implementation

_i2.num get startY => _i4.getProperty(
      this,
      'startY',
    );
set startY (num value)

Implementation

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