Represents a vertex in the graph.
Declaration Syntax
C# | Visual Basic | Visual C++ |
public abstract class Vertex : GraphObject
Public MustInherit Class Vertex _ Inherits GraphObject
public ref class Vertex abstract : public GraphObject
Members
All Members | Constructors | Methods | Properties | Fields | |
Icon | Member | Description |
---|---|---|
Vertex()()() |
Initializes a new instance of the Vertex object.
| |
Clone()()() |
Creates an exact copy of the vertex.
| |
Color |
Gets or sets the color of the vertex.
| |
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.) | |
GetHashCode()()() |
Generates a hash code based on the unique identifier.
(Overrides Object.GetHashCode()()().) | |
GetType()()() |
Gets the Type of the current instance.
(Inherited from Object.) | |
GreaterThan(Vertex, Vertex) |
Compares two vertices according to their unique identifiers.
| |
GreaterThanOrEqual(Vertex, Vertex) |
Compares two vertices according to their unique identifiers.
| |
InDegree |
Gets the indegree of the vertex, which is the number of edges ending at the vertex.
| |
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.) | |
LessThan(Vertex, Vertex) |
Compares two vertices according to their unique identifiers.
| |
LessThanOrEqual(Vertex, Vertex) |
Compares two vertices according to their unique identifiers.
| |
MemberwiseClone()()() |
Creates a shallow copy of the current Object.
(Inherited from Object.) | |
OutDegree |
Gets the outdegree of the vertex, which is the number of edges starting at the vertex.
| |
ToString()()() |
Returns a String that represents the current Object.
(Inherited from Object.) | |
UniqueId |
Gets the unique identifier of the vertex.
|
Inheritance Hierarchy
Object | |||
GraphObject | |||
Vertex | |||
UIVertex |