Click or drag to resize

mxGraphModelGetEdgesBetween Method (mxIGraphModel, Object, Object, Boolean)

imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Returns all edges between the given source and target mxCells. If the optional boolean directed argument is false, then a matching edge is returned regardless of its direction.

Namespace:  imbSCI.Graph.MXGraph.model
Assembly:  imbSCI.Graph (in imbSCI.Graph.dll) Version: 0.3.70.
Syntax
C#
public static Object[] GetEdgesBetween(
	mxIGraphModel model,
	Object source,
	Object target,
	bool directed
)
Request Example View Source

Parameters

model
Type: imbSCI.Graph.MXGraph.modelmxIGraphModel
The graph model that contains the graph.
source
Type: SystemObject
mxCell that defines the source terminal of the edge to be returned.
target
Type: SystemObject
mxCell that defines the target terminal of the edge to be returned.
directed
Type: SystemBoolean
Optional boolean that specifies if the direction of the edge should be taken into account. Default is true.

Return Value

Type: Object
See Also