handleAngle property

num get handleAngle

Gets or sets the spot to locate the Adornment for the rotation handle when it does not have a Placeholder. This assumes the Adornment's location will be at the center of the rotation handle.

By default this is zero degrees, which locates the Adornment so that it is placed to the right of an un-rotated object. You can set this to a multiple of 90 degrees to position the rotation handle differently with respect to the #rotationPoint.

Implementation

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

Implementation

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