Click or drag to resize

mxGraphModelGetEdges Method (mxIGraphModel, Object, Boolean, Boolean, Boolean)

imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Returns all distinct edges connected to this cell. If at least one of incoming or outgoing is true, then loops are ignored, otherwise if both are false, then all edges connected to the given cell are returned including loops.

Namespace:  imbSCI.Graph.MXGraph.model
Assembly:  imbSCI.Graph (in imbSCI.Graph.dll) Version: 0.3.70.
Syntax
C#
public static Object[] GetEdges(
	mxIGraphModel model,
	Object cell,
	bool incoming,
	bool outgoing,
	bool includeLoops
)
Request Example View Source

Parameters

model
Type: imbSCI.Graph.MXGraph.modelmxIGraphModel
Model that contains the connection information
cell
Type: SystemObject
Cell whose connections should be returned
incoming
Type: SystemBoolean
Specifies if incoming edges should be returned
outgoing
Type: SystemBoolean
Specifies if outgoing edges should be returned
includeLoops
Type: SystemBoolean
Specifies if loops should be returned

Return Value

Type: Object
Returns the array of connected edges for the given cell
See Also