Normally you should use
GetVertex(Int32, Boolean, Boolean) but if you need a reference to a Vertex that has no yet been created, this constructor may be used (but know what you are doing!)
Namespace:
VelocityGraph
Assembly:
VelocityGraph (in VelocityGraph.dll) Version: 11.1.0.0 (11.1)
Syntax public Vertex(
Graph g,
VertexType eType,
int eId
)
Public Sub New (
g As Graph,
eType As VertexType,
eId As Integer
)
public:
Vertex(
Graph^ g,
VertexType^ eType,
int eId
)
new :
g : Graph *
eType : VertexType *
eId : int -> Vertex
Parameters
- g
- Type: VelocityGraphGraph
the owning graph - eType
- Type: VelocityGraphVertexType
the type of the Vertex - eId
- Type: SystemInt32
the Id of the Vertex
See Also