Represents a edge in the graph.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public abstract class Edge : GraphObject
Public MustInherit Class Edge _ Inherits GraphObject
public ref class Edge abstract : public GraphObject
Members
All Members | Constructors | Methods | Properties | Fields | |
Icon | Member | Description |
---|---|---|
Edge(Vertex, Vertex) |
Initializes this edge with a given first and second vertex.
| |
Clone()()() |
Creates an exact copy of the edge.
| |
Equals(Object) |
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.) | |
Finalize()()() |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.) | |
first |
The first vertex (origin) of the edge.
| |
GetHashCode()()() |
Serves as a hash function for a particular type.
(Inherited from Object.) | |
GetType()()() |
Gets the Type of the current instance.
(Inherited from Object.) | |
label |
The label of the graph object, to be used by deriving classes.
(Inherited from GraphObject.) | |
Label |
Gets or sets the label of the graph object.
(Inherited from GraphObject.) | |
MemberwiseClone()()() |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
second |
The second vertex (destination) of the edge.
| |
ToString()()() |
Returns a String that represents the current Object.
(Inherited from Object.) |
Inheritance Hierarchy
Object | |||
GraphObject | |||
Edge | |||
UIEdge |