maxLocation property
Point
get
maxLocation
Gets or sets the maximum 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 maximum, and similarly for NaN as the Y value.
Implementation
_i3.Point get maxLocation => _i4.getProperty(
this,
'maxLocation',
);
set
maxLocation
(Point value)
Implementation
set maxLocation(_i3.Point value) {
_i4.setProperty(
this,
'maxLocation',
value,
);
}