handleDistance property

num get handleDistance

Gets or sets the spot to locate the Adornment at a particular distance from the #adornedObject. This assumes the Adornment's location will be at the center of the rotation handle.

By default this is 50, which locates the Adornment so that it is placed to the right of an un-rotated object.

Implementation

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

Implementation

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