Adds the specified edge to this Graph
object.
Namespace: Teigha.DatabaseServices
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public void AddEdge(
GraphNode from,
GraphNode toPointer
)
Public Sub AddEdge (
from As GraphNode,
toPointer As GraphNode
)
public:
void AddEdge(
GraphNode^ from,
GraphNode^ toPointer
)
member AddEdge :
from : GraphNode *
toPointer : GraphNode -> unit
Parameters
- from GraphNode
- [in] Handle to a GraphNode object at the start of the
edge.
- toPointer GraphNode
- [in] Handle to a GraphNode object at the end of the edge.
See Also