Show / Hide Table of Contents

Class FormatClusterEventArgs<TVertex, TEdge>

Arguments of an event related to the formatting of a clustered graph.

Inheritance
System.Object
System.EventArgs
FormatClusterEventArgs<TVertex, TEdge>
Inherited Members
System.EventArgs.Empty
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.Graphviz
Assembly: QuikGraph.Graphviz.dll
Syntax
[Serializable]
public class FormatClusterEventArgs<TVertex, TEdge> : EventArgs where TEdge : IEdge<TVertex>
Type Parameters
Name Description
TVertex
TEdge

Constructors

| Improve this Doc View Source

FormatClusterEventArgs(IVertexAndEdgeListGraph<TVertex, TEdge>, GraphvizGraph)

Initializes a new instance of the EdgeEventArgs<TVertex, TEdge> class.

Declaration
public FormatClusterEventArgs(IVertexAndEdgeListGraph<TVertex, TEdge> clusteredGraph, GraphvizGraph graphFormat)
Parameters
Type Name Description
IVertexAndEdgeListGraph<TVertex, TEdge> clusteredGraph

Graph to format.

GraphvizGraph graphFormat

Graph format.

Exceptions
Type Condition
System.ArgumentNullException

clusteredGraph is null.

System.ArgumentNullException

graphFormat is null.

Properties

| Improve this Doc View Source

Cluster

Graph to format.

Declaration
public IVertexAndEdgeListGraph<TVertex, TEdge> Cluster { get; }
Property Value
Type Description
IVertexAndEdgeListGraph<TVertex, TEdge>
| Improve this Doc View Source

GraphFormat

Graph format.

Declaration
public GraphvizGraph GraphFormat { get; }
Property Value
Type Description
GraphvizGraph

Extension Methods

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