GoDiagram Web Reference
CreatePort Method (GoBasicNode)
Example 

Create and initialize a GoPort.
Syntax
'Declaration
 
Protected Overridable Function CreatePort() As GoPort
protected virtual GoPort CreatePort()

Return Value

a GoPort that is a shape with no particular link spot for links either coming into or going out of the port
Example
If you override this method, you may want the definition to do some of the things that the standard definition does:
protected virtual GoPort CreatePort() {
  GoPort p = new GoPort();
  p.Style = GoPortStyle.Ellipse;  // black circle/ellipse
  // use custom link spots for both links coming in and going out
  p.FromSpot = GoObject.NoSpot;
  p.ToSpot = GoObject.NoSpot;
  p.Size = new SizeF(7, 7);
  return p;
}
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

GoBasicNode Class
GoBasicNode Members

 

 


© 2013. Northwoods Software Corporation. All Rights Reserved.

Send Feedback