Class ArrangingNetwork

GoDiagram®
v10.0.8
by Northwoods Software®

This class represents an abstract graph of ArrangingVertexes and ArrangingEdges that can be constructed based on the Nodes and Links of a Diagram so that the ArrangingLayout can operate independently of the diagram until it is time to commit any node positioning or link routing.

Inheritance
ArrangingNetwork
Namespace: Northwoods.Go.Layouts.Extensions
Assembly: ArrangingWinForms.dll
Syntax
public class ArrangingNetwork : Network<ArrangingVertex, ArrangingEdge, ArrangingLayout>
Remarks

This class inherits from Network<V, E, Y>.

Constructors

ArrangingNetwork(ArrangingLayout)

This constructs an empty network associated with a given layout.

Declaration
public ArrangingNetwork(ArrangingLayout layout)
Parameters
Type Name Description
ArrangingLayout layout
Remarks

It is commonplace to call AddParts(IEnumerable<Part>, bool, Predicate<Part>) to build up the network to have the same structure as a Diagram's or Group's nodes and links.

Methods

CreateEdge()

Allocate a new instance of Network<V, E, Y>.Edge.

Declaration
public override ArrangingEdge CreateEdge()
Returns
Type Description
ArrangingEdge
Overrides
Northwoods.Go.Layouts.Network<Northwoods.Go.Layouts.Extensions.ArrangingVertex, Northwoods.Go.Layouts.Extensions.ArrangingEdge, Northwoods.Go.Layouts.Extensions.ArrangingLayout>.CreateEdge()
Remarks

This is overridden in Network subclasses to create instances of subclasses of Network<V, E, Y>.Edge. Please read the Introduction page on Extensions for how to override methods and how to call this base method.

CreateVertex()

Allocate a new instance of Network<V, E, Y>.Vertex.

Declaration
public override ArrangingVertex CreateVertex()
Returns
Type Description
ArrangingVertex
Overrides
Northwoods.Go.Layouts.Network<Northwoods.Go.Layouts.Extensions.ArrangingVertex, Northwoods.Go.Layouts.Extensions.ArrangingEdge, Northwoods.Go.Layouts.Extensions.ArrangingLayout>.CreateVertex()
Remarks

This is overridden in Network subclasses to create instances of subclasses of Network<V, E, Y>.Vertex. Please read the Introduction page on Extensions for how to override methods and how to call this base method.