gridSnapOrigin property

Point get gridSnapOrigin

Gets or sets the snapping grid's origin point, in document coordinates, if the value of #isGridSnapEnabled is true. By default this property is the Point(NaN, NaN).

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

Implementation

_i3.Point get gridSnapOrigin => _i4.getProperty(
      this,
      'gridSnapOrigin',
    );
set gridSnapOrigin (Point value)

Implementation

set gridSnapOrigin(_i3.Point value) {
  _i4.setProperty(
    this,
    'gridSnapOrigin',
    value,
  );
}