Show / Hide Table of Contents

Class GraphvizArrow

Graphviz arrow. See more

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

Constructors

| Improve this Doc View Source

GraphvizArrow(GraphvizArrowShape)

Initializes a new instance of the GraphvizArrow class.

Declaration
public GraphvizArrow(GraphvizArrowShape shape)
Parameters
Type Name Description
GraphvizArrowShape shape

Arrow shape.

| Improve this Doc View Source

GraphvizArrow(GraphvizArrowShape, GraphvizArrowClipping, GraphvizArrowFilling)

Initializes a new instance of the GraphvizArrow class.

Declaration
public GraphvizArrow(GraphvizArrowShape shape, GraphvizArrowClipping clipping, GraphvizArrowFilling filling)
Parameters
Type Name Description
GraphvizArrowShape shape

Arrow shape.

GraphvizArrowClipping clipping

Arrow clipping.

GraphvizArrowFilling filling

Arrow filling.

Properties

| Improve this Doc View Source

Clipping

Arrow clipping.

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

Filling

Arrow filling.

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

Shape

Arrow shape.

Declaration
public GraphvizArrowShape Shape { get; set; }
Property Value
Type Description
GraphvizArrowShape

Methods

| Improve this Doc View Source

ToDot()

Converts this arrow to DOT.

Declaration
public string ToDot()
Returns
Type Description
System.String

Arrow as DOT.

| Improve this Doc View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()

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