centerY property

num get centerY

Gets or sets the center Point#y of this vertex, in document coordinates. This property depends on both #bounds and #focus. Setting this property does not modify the position of any Node, but it will modify the value of #bounds.

Implementation

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

Implementation

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