doActivate method

void doActivate()

Find the #handle, remember the object's original bounds, save the results of calling #computeMinSize, #computeMaxSize, and #computeCellSize, capture the mouse, and start a transaction.

Normally when this method is called the value of #handle will be null, resulting in a call to Tool#findToolHandleAt to find a "Resizing" tool handle, which is then remembered as the value of #handle. If when this method is called the value of #handle is already set, then there is no need to call Tool#findToolHandleAt, because the programmer has already set up which resize handle they want the user to be resizing.

Implementation

void doActivate() {
  _i4.callMethod(
    this,
    'doActivate',
    [],
  );
}