Show / Hide Table of Contents

Class DirectedGraph

Inheritance
System.Object
DirectedGraph
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: QuikGraph.Serialization.DirectedGraphML
Assembly: QuikGraph.Serialization.dll
Syntax
[CLSCompliant(false)]
[Serializable]
public class DirectedGraph

Properties

| Improve this Doc View Source

Background

Declaration
public string Background { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

BackgroundImage

Declaration
public string BackgroundImage { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

ButterflyMode

Declaration
public ClrBoolean ButterflyMode { get; set; }
Property Value
Type Description
ClrBoolean
| Improve this Doc View Source

ButterflyModeSpecified

Declaration
public bool ButterflyModeSpecified { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Categories

Declaration
public DirectedGraphCategory[] Categories { get; set; }
Property Value
Type Description
DirectedGraphCategory[]
| Improve this Doc View Source

GraphDirection

Declaration
public GraphDirectionEnum GraphDirection { get; set; }
Property Value
Type Description
GraphDirectionEnum
| Improve this Doc View Source

GraphDirectionSpecified

Declaration
public bool GraphDirectionSpecified { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

IdentifierAliases

Declaration
public DirectedGraphAlias[] IdentifierAliases { get; set; }
Property Value
Type Description
DirectedGraphAlias[]
| Improve this Doc View Source

Layout

Declaration
public LayoutEnum Layout { get; set; }
Property Value
Type Description
LayoutEnum
| Improve this Doc View Source

LayoutSpecified

Declaration
public bool LayoutSpecified { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Links

Declaration
public DirectedGraphLink[] Links { get; set; }
Property Value
Type Description
DirectedGraphLink[]
| Improve this Doc View Source

NeighborhoodDistance

Declaration
public string NeighborhoodDistance { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Nodes

Declaration
public DirectedGraphNode[] Nodes { get; set; }
Property Value
Type Description
DirectedGraphNode[]
| Improve this Doc View Source

Paths

Declaration
public DirectedGraphPath[] Paths { get; set; }
Property Value
Type Description
DirectedGraphPath[]
| Improve this Doc View Source

Properties

Declaration
public DirectedGraphProperty[] Properties { get; set; }
Property Value
Type Description
DirectedGraphProperty[]
| Improve this Doc View Source

QualifiedNames

Declaration
public DirectedGraphName[] QualifiedNames { get; set; }
Property Value
Type Description
DirectedGraphName[]
| Improve this Doc View Source

Styles

Declaration
public DirectedGraphStyle[] Styles { get; set; }
Property Value
Type Description
DirectedGraphStyle[]
| Improve this Doc View Source

Title

Declaration
public string Title { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

ZoomLevel

Declaration
public string ZoomLevel { get; set; }
Property Value
Type Description
System.String

Extension Methods

DirectedGraphMLExtensions.WriteXml(DirectedGraph, String)
DirectedGraphMLExtensions.WriteXml(DirectedGraph, XmlWriter)
DirectedGraphMLExtensions.WriteXml(DirectedGraph, Stream)
DirectedGraphMLExtensions.WriteXml(DirectedGraph, TextWriter)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, String)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, String, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, XmlWriter)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, XmlReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, String, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeAndValidateFromGraphML<TVertex, TEdge, TGraph>(TGraph, TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
SerializationExtensions.SerializeToXml<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String)
SerializationExtensions.SerializeToXml<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String, Action<XmlWriter, TGraph>, Action<XmlWriter, TVertex>, Action<XmlWriter, TEdge>)
  • Improve this Doc
  • View Source
In This Article
Back to top QuikGraph