Return Value
a GoPort that is a shape with no particular link spot for links either coming into or going out of the port
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; }