GoXam for WPF v3
UpdateRouteDataPoints Method
Northwoods.GoXam Namespace > PartManager Class : UpdateRouteDataPoints Method
This is called after link routing, if UpdatesRouteDataPoints is true, to allow the link's Route.Points to be copied to the link data.
Syntax
protected virtual void UpdateRouteDataPoints( 
   Link link
)

Parameters

link
Remarks
Typically one would override this in the following manner: protected override void UpdateRouteDataPoints(Link link) { if (!this.UpdatesRouteDataPoints) return; var data = link.Data as MyLinkData; if (data != null) { data.Points = new List<Point>(link.Route.Points); } }
See Also

Reference

PartManager Class
PartManager Members