Show / Hide Table of Contents

Class GraphvizEdgeExtremity

Graphviz edge extremity.

Inheritance
System.Object
GraphvizEdgeExtremity
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 GraphvizEdgeExtremity

Constructors

| Improve this Doc View Source

GraphvizEdgeExtremity(Boolean)

Initializes a new instance of the GraphvizEdgeExtremity class.

Declaration
public GraphvizEdgeExtremity(bool isHead)
Parameters
Type Name Description
System.Boolean isHead

Indicates if this edge extremity is the head.

Properties

| Improve this Doc View Source

IsClipped

Is edge extremity clipped to the boundaries of the target node? See more or See more

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

IsHead

Indicates if this extremity is edge head or tail.

Declaration
public bool IsHead { get; }
Property Value
Type Description
System.Boolean
| 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

Label

Label. See more or See more

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

Logical

Logical extremity of an edge. See more or See more

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

Same

Identifier to group edge extremities with same identifier. See more or See more

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

ToolTip

Tooltip. See more or See more

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

Url

URL. See more or See more

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

Methods

| Improve this Doc View Source

AddParameters(IDictionary)

Adds this edge extremity 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