isGridSnapRealtime property

bool get isGridSnapRealtime

If dragging with the DraggingTool, whether or not Parts snap to a grid (if applicable) in real-time, or only at the end of the dragging transaction. By default this property is true.

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

Implementation

_i2.bool get isGridSnapRealtime => _i4.getProperty(
      this,
      'isGridSnapRealtime',
    );
set isGridSnapRealtime (bool value)

Implementation

set isGridSnapRealtime(_i2.bool value) {
  _i4.setProperty(
    this,
    'isGridSnapRealtime',
    value,
  );
}