minLocation property

Point minLocation

Gets or sets the minimum location of this Part to which the user may drag using the DraggingTool.

Value must be of type Point. The initial value is (-Infinity, -Infinity), which imposes no position constraint. A X value of NaN causes Diagram#computeMove to use the part's current location's X value as the minimum, and similarly for NaN as the Y value.

Implementation

_i3.Point get minLocation => _i4.getProperty(
      this,
      'minLocation',
    );
void minLocation=(Point value)

Implementation

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