startX property

num get startX

Gets or sets the starting X 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 startX => _i4.getProperty(
      this,
      'startX',
    );
set startX (num value)

Implementation

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