handle property

GraphObject? handle

Returns the GraphObject that is the tool handle being dragged by the user. This will be contained by an Adornment whose category is "RelinkFrom" or "RelinkTo". Its Adornment#adornedPart is the same as the #originalLink.

This property is also settable, but should only be set either within an override of #doActivate or prior to calling #doActivate.

Implementation

_i3.GraphObject? get handle => _i4.getProperty(
      this,
      'handle',
    );
void handle=(GraphObject? value)

Implementation

set handle(_i3.GraphObject? value) {
  _i4.setProperty(
    this,
    'handle',
    value ?? _i5.undefined,
  );
}