Click or drag to resize
PerformAction Delegate
Represents the method that will define the action behavior when traversing a node type.

Namespace: OIV.Inventor.Actions
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.0.0 (2024.1.0)
Syntax
public delegate void PerformAction(
	SoAction action,
	SoNode node
)

Parameters

action
Type: OIV.Inventor.ActionsSoAction
The source action traversing the scene graph.
node
Type: OIV.Inventor.NodesSoNode
The current node traversed by the action.
Remarks
When you create a PerformAction delegate, you identify the method that will handle the node type. To associate the node type with your method, call AddMethod with an instance of the delegate and the associated node type.
See Also