isGeometryPositioned property

bool get isGeometryPositioned

Gets or sets the whether the GraphObject#position of this shape denotes the top-left corner of this shape in panel coordinates or the origin of this geometry's coordinate system. Basically, this determines whether the #strokeWidth affects the rendered location. A true value allows multiple shapes to be positioned precisely in a "Position" Panel independent of the stroke width. The default is false.

Implementation

_i2.bool get isGeometryPositioned => _i4.getProperty(
      this,
      'isGeometryPositioned',
    );
set isGeometryPositioned (bool value)

Implementation

set isGeometryPositioned(_i2.bool value) {
  _i4.setProperty(
    this,
    'isGeometryPositioned',
    value,
  );
}