gridSnapCellSpot property

Spot get gridSnapCellSpot

Gets or sets the Spot that specifies what point in the grid cell dragged parts snap to, if the value of #isGridSnapEnabled is true. By default this property is Spot.TopLeft.

In typical DraggingTool operation this is set via DraggingTool#gridSnapCellSpot.

Implementation

_i3.Spot get gridSnapCellSpot => _i4.getProperty(
      this,
      'gridSnapCellSpot',
    );
set gridSnapCellSpot (Spot value)

Implementation

set gridSnapCellSpot(_i3.Spot value) {
  _i4.setProperty(
    this,
    'gridSnapCellSpot',
    value,
  );
}