GoDiagram Win Reference
UpdateRoute Method (IGoRoutable)

Request the recalculation of the shape of this object.
Syntax
'Declaration
 
Sub UpdateRoute() 
void UpdateRoute()
Remarks

If this GoObject is part of a GoDocument this should possibly delay the call to CalculateRoute by calling GoDocument.GoDocument.UpdateRoute. Otherwise this should just call CalculateRoute to determine a new route immediately.

This is typically implemented as:

            public virtual void UpdateRoute() {
              GoDocument doc = this.Document;
              if (doc != null)
                doc.UpdateRoute(this);
              else
                CalculateRoute();
            }
            

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

IGoRoutable Interface
IGoRoutable Members

 

 


© 2013. Northwoods Software Corporation. All Rights Reserved.

Send Feedback