Creates a VRML 2.0 ROUTE-TO connection.
Namespace: OIV.InventorAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 9.9.36.0 (9.9.36.0)
Syntaxpublic static void CreateRoute(
SoNode pFromNode,
string fromEventOutName,
SoNode pInNode,
string toEventInName
)
Public Shared Sub CreateRoute (
pFromNode As SoNode,
fromEventOutName As String,
pInNode As SoNode,
toEventInName As String
)
public:
static void CreateRoute(
SoNode^ pFromNode,
String^ fromEventOutName,
SoNode^ pInNode,
String^ toEventInName
)
static member CreateRoute :
pFromNode : SoNode *
fromEventOutName : string *
pInNode : SoNode *
toEventInName : string -> unit
Parameters
- pFromNode
- Type: OIV.Inventor.NodesSoNode
- fromEventOutName
- Type: SystemString
- pInNode
- Type: OIV.Inventor.NodesSoNode
- toEventInName
- Type: SystemString
RemarksThe 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