Click or drag to resize
SoDBCreateRoute Method

Creates a VRML 2.0 ROUTE-TO connection.

Namespace: OIV.Inventor
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 9.9.36.0 (9.9.36.0)
Syntax
public static void CreateRoute(
	SoNode pFromNode,
	string fromEventOutName,
	SoNode pInNode,
	string toEventInName
)

Parameters

pFromNode
Type: OIV.Inventor.NodesSoNode
fromEventOutName
Type: SystemString
pInNode
Type: OIV.Inventor.NodesSoNode
toEventInName
Type: SystemString
Remarks

The connection is made from the pFromNode 's fromEventOut eventOut to the pToNodes 's toEventIn eventIn. This is equivalent to

ROUTE pFromNode.fromEventOut TO pToNode.toEventIn

in a VRML 2.0 file.

See Also