handleArchetype property
GraphObject?
get
handleArchetype
Gets or sets a small GraphObject that is copied as a reshape handle at each movable point in the selected link's route. By default this is a Shape that is a small blue rectangle. Setting this property does not raise any events.
Here is an example of changing the default handles to be larger yellow circles:
myDiagram.toolManager.linkReshapingTool.handleArchetype =
$(go.Shape, "Circle",
{ width: 10, height: 10, fill: "yellow" });
Implementation
_i3.GraphObject? get handleArchetype => _i4.getProperty(
this,
'handleArchetype',
);
set
handleArchetype
(GraphObject? value)
Implementation
set handleArchetype(_i3.GraphObject? value) {
_i4.setProperty(
this,
'handleArchetype',
value ?? _i5.undefined,
);
}