QuickGraph


DirectedGraphMLExtensions

Namespace: QuickGraph.Serialization

Directed Graph Markup Language extensions

Static members

Static memberDescription
DirectedGraphSerializer
Signature: XmlSerializer

Gets the DirectedGraph xml serializer

OpenAsDGML(graph, filename)
Signature: (graph:IVertexAndEdgeListGraph<'TVertex,'TEdge> * filename:string) -> unit
Type parameters: 'TVertex, 'TEdge
ToDirectedGraphML(visitedGraph)
Signature: visitedGraph:IVertexAndEdgeListGraph<'TVertex,'TEdge> -> DirectedGraph
Type parameters: 'TVertex, 'TEdge

Populates a DGML graph from a graph

ToDirectedGraphML(...)
Signature: (visitedGraph:IVertexAndEdgeListGraph<'TVertex,'TEdge> * vertexColors:Func<'TVertex,GraphColor>) -> DirectedGraph
Type parameters: 'TVertex, 'TEdge

Populates a DGML graph from a graph

ToDirectedGraphML(...)
Signature: (visitedGraph:IVertexAndEdgeListGraph<'TVertex,'TEdge> * vertexIdentities:VertexIdentity<'TVertex> * edgeIdentities:EdgeIdentity<'TVertex,'TEdge>) -> DirectedGraph
Type parameters: 'TVertex, 'TEdge

Populates a DGML graph from a graph

ToDirectedGraphML(...)
Signature: (visitedGraph:IVertexAndEdgeListGraph<'TVertex,'TEdge> * vertexIdentities:VertexIdentity<'TVertex> * edgeIdentities:EdgeIdentity<'TVertex,'TEdge> * _formatNode:Action<'TVertex,DirectedGraphNode> * _formatEdge:Action<'TEdge,DirectedGraphLink>) -> DirectedGraph
Type parameters: 'TVertex, 'TEdge

Populates a DGML graph from a graph

WriteXml(graph, fileName)
Signature: (graph:DirectedGraph * fileName:string) -> unit

Writes the dgml data structure to the xml writer

WriteXml(graph, writer)
Signature: (graph:DirectedGraph * writer:XmlWriter) -> unit

Writes the dgml data structure to the xml writer

WriteXml(graph, stream)
Signature: (graph:DirectedGraph * stream:Stream) -> unit

Writes the dgml data structure to the xml writer

WriteXml(graph, writer)
Signature: (graph:DirectedGraph * writer:TextWriter) -> unit

Writes the dgml data structure to the xml writer

Fork me on GitHub