Class LinkLabelDraggingTool
The LinkLabelDraggingTool class lets the user move a label on a Link.
Namespace: Northwoods.Go.Tools.Extensions
Assembly: LinkLabelDraggingAvalonia.dll
Syntax
public class LinkLabelDraggingTool : Tool
Remarks
This tool only works when the Link has a label
that is positioned at the Mid
Constructors
LinkLabelDraggingTool()
Constructs a LinkLabelDraggingTool and sets the name for the tool.
Declaration
public LinkLabelDraggingTool()
Fields
Label
The label being dragged.
Declaration
public GraphObject Label
Field Value
Type | Description |
---|---|
Graph |
Methods
CanStart()
This tool can only start if the mouse has moved enough so that it is not a click,
and if the mouse down point is on a GraphObject "label" in a Link Panel,
as determined by Find
Declaration
public override bool CanStart()
Returns
Type | Description |
---|---|
bool |
Overrides
DoActivate()
Start a transaction, call Find
Declaration
public override void DoActivate()
Overrides
DoCancel()
Restore the label's original value for Segment
Declaration
public override void DoCancel()
Overrides
DoDeactivate()
Stop any ongoing transaction.
Declaration
public override void DoDeactivate()
Overrides
DoMouseMove()
During the drag, call Update
Declaration
public override void DoMouseMove()
Overrides
DoMouseUp()
At the end of the drag, update the segment offset of the label and finish the tool, completing a transaction.
Declaration
public override void DoMouseUp()
Overrides
DoStop()
Clear any reference to a label element.
Declaration
public override void DoStop()
Overrides
FindLabel()
From the GraphObject at the mouse point, search up the visual tree until we get to an object that is a label of a Link.
Declaration
public GraphObject FindLabel()
Returns
Type | Description |
---|---|
Graph |
This returns null if no such label is at the mouse down point. |
UpdateSegmentOffset()
Save the label's Segment
Declaration
public void UpdateSegmentOffset()