geometryString property

String get geometryString

When set, creates a Geometry and normalizes it from a given path string, then sets the #geometry property on this Shape and set the GraphObject#position to the amount computed by normalization. The property getter simply returns the toString value of the #geometry, or the empty string if there is no Geometry value.

See the Geometry Path Strings Introduction page for examples.

Implementation

_i2.String get geometryString => _i4.getProperty(
      this,
      'geometryString',
    );
set geometryString (String value)

Implementation

set geometryString(_i2.String value) {
  _i4.setProperty(
    this,
    'geometryString',
    value,
  );
}