Click or drag to resize

mxPerimeterFunction Delegate

imbSCI | imbACE | imbNLP | imbWEM | imbWBI
Defines the requirements for a perimeter function.

Namespace:  imbSCI.Graph.MXGraph.view
Assembly:  imbSCI.Graph (in imbSCI.Graph.dll) Version: 0.3.70.
Syntax
C#
public delegate mxPoint mxPerimeterFunction(
	mxRectangle bounds,
	mxCellState vertex,
	mxPoint next,
	bool orthogonal
)

Parameters

bounds
Type: imbSCI.Graph.MXGraph.utilsmxRectangle
Rectangle that represents the absolute bounds of the vertex.
vertex
Type: imbSCI.Graph.MXGraph.viewmxCellState
Cell state that represents the vertex.
next
Type: imbSCI.Graph.MXGraph.utilsmxPoint
Point that represents the nearest neighbour point on the given edge.
orthogonal
Type: SystemBoolean
Boolean that specifies if the orthogonal projection onto the perimeter should be returned. If this is false then the intersection of the perimeter and the line between the next and the center point is returned.

Return Value

Type: mxPoint
See Also