Click or drag to resize

mxGraphModelgetChildCells Method

imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Returns the children of the given cell that are vertices and/or edges depending on the arguments.

Namespace:  imbSCI.Graph.MXGraph.model
Assembly:  imbSCI.Graph (in imbSCI.Graph.dll) Version: 0.3.70.
Syntax
C#
public static Object[] getChildCells(
	mxIGraphModel model,
	Object parent,
	bool vertices,
	bool edges
)
Request Example View Source

Parameters

model
Type: imbSCI.Graph.MXGraph.modelmxIGraphModel
Model that contains the hierarchical information.
parent
Type: SystemObject
Cell whose child vertices or edges should be returned.
vertices
Type: SystemBoolean
Boolean indicating if child vertices should be returned.
edges
Type: SystemBoolean
Boolean indicating if child edges should be returned.

Return Value

Type: Object
Returns the child vertices and/or edges of the given parent.
See Also