Show / Hide Table of Contents

Class GraphvizEdgeLabel

Graphviz edge label.

Inheritance
System.Object
GraphvizEdgeLabel
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.Graphviz.Dot
Assembly: QuikGraph.Graphviz.dll
Syntax
[Serializable]
public class GraphvizEdgeLabel

Properties

| Improve this Doc View Source

Angle

Label angle. See more

Declaration
public double Angle { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

Distance

Scaling factor from node. See more

Declaration
public double Distance { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

Float

Floating label. See more

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

Font

Font. See more or See more

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

FontColor

Font color. See more

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

IsHtmlLabel

Indicates if label should be read as HTML or normal text. By default it is normal text. See more

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

Value

Label text. See more

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

Methods

| Improve this Doc View Source

AddParameters(IDictionary)

Adds this edge label parameters to the given parameters map.

Declaration
public void AddParameters(IDictionary parameters)
Parameters
Type Name Description
System.Collections.IDictionary parameters

Parameter map to fill.

Exceptions
Type Condition
System.ArgumentNullException

parameters is null.

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